Skip to content

Commit ec625e2

Browse files
Apply php-cs-fixer rule for array_key_exists()
1 parent 256b96c commit ec625e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GenericEvent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function setArguments(array $args = [])
111111
*/
112112
public function hasArgument($key)
113113
{
114-
return array_key_exists($key, $this->arguments);
114+
return \array_key_exists($key, $this->arguments);
115115
}
116116

117117
/**

0 commit comments

Comments
 (0)