Skip to content

Commit 0614b37

Browse files
committed
Fix more quotes in exception messages
1 parent dc11866 commit 0614b37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Loader/ObjectRouteLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function load($resource, $type = null)
5555
$loaderObject = $this->getServiceObject($serviceString);
5656

5757
if (!\is_object($loaderObject)) {
58-
throw new \LogicException(sprintf('%s:getServiceObject() must return an object: "%s" returned.', static::class, \gettype($loaderObject)));
58+
throw new \LogicException(sprintf('"%s:getServiceObject()" must return an object: "%s" returned.', static::class, \gettype($loaderObject)));
5959
}
6060

6161
if (!method_exists($loaderObject, $method)) {

0 commit comments

Comments
 (0)