fix PHPCS issue

This commit is contained in:
Matthias Pfefferle 2023-12-05 12:52:28 +01:00
parent 15179f2c5a
commit 8c93d36d95

View file

@ -44,6 +44,6 @@ if ( ! function_exists( 'is_countable' ) ) {
* @return bool True if `$value` is countable, otherwise false.
*/
function is_countable( $value ) {
return is_array( $value ) || $value instanceof \Countable;
return is_array( $value ) || $value instanceof \Countable;
}
}