Skip to content
This repository was archived by the owner on Feb 6, 2020. It is now read-only.

Commit 28f6327

Browse files
committed
Remove unnecessary string concatenation
1 parent 47b818f commit 28f6327

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ServiceManager.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,8 +433,7 @@ private function createDelegatorFromName($name, array $options = null)
433433
}
434434

435435
throw new ServiceNotCreatedException(sprintf(
436-
'A non-callable delegator, "%s", was provided; expected a callable or '
437-
. 'instance of "%s"',
436+
'A non-callable delegator, "%s", was provided; expected a callable or instance of "%s"',
438437
is_object($delegatorFactory) ? get_class($delegatorFactory) : gettype($delegatorFactory),
439438
DelegatorFactoryInterface::class
440439
));

0 commit comments

Comments
 (0)