Skip to content

Commit

Permalink
Fixed syntax errors after merge conflict.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan0sz committed May 17, 2024
1 parent b8fa121 commit 4a44d17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @subpackage Plausible Analytics
*/

namespace Plausible\Analytics\WP\Includes;
namespace Plausible\Analytics\WP;

use WP_Term;
use Exception;
Expand Down Expand Up @@ -123,7 +123,7 @@ public function maybe_add_custom_params( $params ) {

// Skip the iteration, if `$terms` is not array.
if ( ! is_array( $terms ) ) {
continue // @codeCoverageIgnore;
continue; // @codeCoverageIgnore;
}

// Loop through the terms.
Expand Down

0 comments on commit 4a44d17

Please sign in to comment.