Skip to content

Commit a95e51a

Browse files
authored
Merge pull request #2 from mjrider/master
Adding closure to trigger bug in parsing logic
2 parents f9f0bed + 6e0c167 commit a95e51a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/assets/code.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ class AuthMiddleware
119119
{
120120
public function test()
121121
{
122-
return __('Accessing the Backoffice is not allowed at this time.');
122+
$test = function() {
123+
return __('Accessing the Backoffice is not allowed at this time.');
124+
};
125+
$test();
123126
}
124-
}
127+
}

0 commit comments

Comments
 (0)