Skip to content

Commit 10d9506

Browse files
Apply php-cs-fixer rule for array_key_exists()
1 parent 1d4df0e commit 10d9506

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Form/DoctrineOrmTypeGuesser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ protected function getMetadata($class)
157157
// normalize class name
158158
$class = ClassUtils::getRealClass(ltrim($class, '\\'));
159159

160-
if (array_key_exists($class, $this->cache)) {
160+
if (\array_key_exists($class, $this->cache)) {
161161
return $this->cache[$class];
162162
}
163163

0 commit comments

Comments
 (0)