Skip to content

Commit b50a9a3

Browse files
committed
Fixed unintentional syntax error in test file
1 parent a0a6cd8 commit b50a9a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.1.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ $c);
447447
array('a' => $a, 'b' => $b,
448448
'c' => $c);
449449

450-
array()
450+
array(
451451
static function() {
452452
return null;
453453
},

src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.1.inc.fixed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ array(
483483
'c' => $c,
484484
);
485485

486-
array()
486+
array(
487487
static function() {
488488
return null;
489489
},

0 commit comments

Comments
 (0)