Skip to content

Commit 51f3f20

Browse files
committed
Merge branch '4.3' into 4.4
* 4.3: Fix CS Fix CS
2 parents d20d7e1 + a252cd9 commit 51f3f20

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
@@ -93,9 +93,7 @@ public function match($pathinfo)
9393
throw new NoConfigurationException();
9494
}
9595

96-
throw 0 < \count($this->allow)
97-
? new MethodNotAllowedException(array_unique($this->allow))
98-
: new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
96+
throw 0 < \count($this->allow) ? new MethodNotAllowedException(array_unique($this->allow)) : new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
9997
}
10098

10199
/**

0 commit comments

Comments
 (0)