Skip to content

Commit 2533e55

Browse files
committed
CS fixes
1 parent 9a5a21c commit 2533e55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ClassLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function addClassMap(array $classMap): void
132132
*/
133133
function addPrefix(string $prefix, $paths, int $type = self::PSR4): void
134134
{
135-
if (static::PSR4 !== $type && static::PSR0 !== $type) {
135+
if ($type !== static::PSR4 && $type !== static::PSR0) {
136136
throw new \UnexpectedValueException('Invalid prefix type');
137137
}
138138

0 commit comments

Comments
 (0)