Skip to content

Commit b689ccd

Browse files
committed
Fix CS
1 parent 3ba5990 commit b689ccd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Matcher/UrlMatcher.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,7 @@ public function match($pathinfo)
8080
throw new NoConfigurationException();
8181
}
8282

83-
throw 0 < \count($this->allow)
84-
? new MethodNotAllowedException(array_unique($this->allow))
85-
: new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
83+
throw 0 < \count($this->allow) ? new MethodNotAllowedException(array_unique($this->allow)) : new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
8684
}
8785

8886
/**

0 commit comments

Comments
 (0)