Skip to content

Commit 9877904

Browse files
committed
Fix CS
1 parent 3d10b86 commit 9877904

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/Annotation/Requirement/ConditionRequirement.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@ public function check(string $value) : ?string
6262
*/
6363
private static function wrapGlobal(array $data) : \ArrayObject
6464
{
65-
return new class ($data) extends \ArrayObject {
66-
public function __get($key) {
65+
return new class($data) extends \ArrayObject {
66+
public function __get($key)
67+
{
6768
return $this->offsetExists($key) ? $this->offsetGet($key) : null;
6869
}
6970
};

0 commit comments

Comments
 (0)