Skip to content

Commit

Permalink
Phpcs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eebbi committed Nov 2, 2023
1 parent 3008bda commit 52b1a03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Formatters/ContactFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function format( array $data ) {
*
* @return array|array[]
*/
public function map_api_contacts( array $ids = [], array $field_keys = [], $default_image = null ) {
public function map_api_contacts( array $ids = [], array $field_keys = [], $default_image = null ) { // phpcs:ignore
if ( empty( $ids ) ) {
return [];
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Formatters/PlaceOfBusinessFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public function map_api_results( array $ids = [] ) : array {
* @return array
*/
public function map_keys( array $posts ) : array {
if( ! \is_plugin_active( 'tms-plugin-place-of-business-sync/plugin.php' ) ) {
if ( ! \is_plugin_active( 'tms-plugin-place-of-business-sync/plugin.php' ) ) {
return [];
}

Expand Down

0 comments on commit 52b1a03

Please sign in to comment.