We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d10b86 commit 9877904Copy full SHA for 9877904
1 file changed
src/Annotation/Requirement/ConditionRequirement.php
@@ -62,8 +62,9 @@ public function check(string $value) : ?string
62
*/
63
private static function wrapGlobal(array $data) : \ArrayObject
64
{
65
- return new class ($data) extends \ArrayObject {
66
- public function __get($key) {
+ return new class($data) extends \ArrayObject {
+ public function __get($key)
67
+ {
68
return $this->offsetExists($key) ? $this->offsetGet($key) : null;
69
}
70
};
0 commit comments