Skip to content

Commit 4a58fdd

Browse files
committed
Tests #64990: Fix PHPCS - split multi-variable use declaration to one-per-line in result filter test
1 parent 38fec64 commit 4a58fdd

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/phpunit/tests/abilities-api/wpGetAbilities.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,10 @@ public function test_wp_get_abilities_result_filter_receives_abilities_and_args(
612612
$filter = static function (
613613
array $abilities,
614614
array $args
615-
) use ( &$received_abilities, &$received_args ): array {
615+
) use (
616+
&$received_abilities,
617+
&$received_args
618+
): array {
616619
$received_abilities = $abilities;
617620
$received_args = $args;
618621
return $abilities;

0 commit comments

Comments
 (0)