Skip to content

Commit 3362e2f

Browse files
committed
fix(phpcs): standardizes filter definitions
Ensures consistency by standardizing the way filters are defined, improving code readability and maintainability.
1 parent c6e7735 commit 3362e2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inc/Services/Breadcrumb.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ public function register( Service_Container $container ): void {
1818
}
1919

2020
public function boot( Service_Container $container ): void {
21-
add_filter( 'wpseo_breadcrumb_output_wrapper', [ $this, 'replace_breadcrumb_wrapper' ]);
22-
add_filter( 'wpseo_breadcrumb_single_link_wrapper', [ $this, 'replace_breadcrumb_link_wrapper' ]);
21+
add_filter( 'wpseo_breadcrumb_output_wrapper', [ $this, 'replace_breadcrumb_wrapper' ] );
22+
add_filter( 'wpseo_breadcrumb_single_link_wrapper', [ $this, 'replace_breadcrumb_link_wrapper' ] );
2323
add_filter( 'wpseo_breadcrumb_single_link', [ $this, 'replace_breadcrumb_link' ] );
2424
add_filter( 'wpseo_breadcrumb_separator', [ $this, 'remove_breadcrumb_separator' ] );
2525
}

0 commit comments

Comments
 (0)