|
3 | 3 | namespace Invoker;
|
4 | 4 |
|
5 | 5 | use Interop\Container\ContainerInterface;
|
| 6 | +use Interop\Container\Exception\NotFoundException; |
6 | 7 | use Invoker\Exception\NotCallableException;
|
7 | 8 |
|
8 | 9 | /**
|
@@ -70,29 +71,30 @@ private function resolveFromContainer($callable)
|
70 | 71 |
|
71 | 72 | // The callable is a container entry name
|
72 | 73 | if (is_string($callable)) {
|
73 |
| - if ($this->container->has($callable)) { |
| 74 | + try { |
74 | 75 | return $this->container->get($callable);
|
75 |
| - } else { |
| 76 | + } catch (NotFoundException $e) { |
76 | 77 | throw NotCallableException::fromInvalidCallable($callable, true);
|
77 | 78 | }
|
78 | 79 | }
|
79 | 80 |
|
80 | 81 | // The callable is an array whose first item is a container entry name
|
81 | 82 | // e.g. ['some-container-entry', 'methodToCall']
|
82 | 83 | if (is_array($callable) && is_string($callable[0])) {
|
83 |
| - if ($this->container->has($callable[0])) { |
| 84 | + try { |
84 | 85 | // Replace the container entry name by the actual object
|
85 | 86 | $callable[0] = $this->container->get($callable[0]);
|
86 | 87 | return $callable;
|
87 |
| - } elseif ($isStaticCallToNonStaticMethod) { |
88 |
| - throw new NotCallableException(sprintf( |
89 |
| - 'Cannot call %s::%s() because %s() is not a static method and "%s" is not a container entry', |
90 |
| - $callable[0], |
91 |
| - $callable[1], |
92 |
| - $callable[1], |
93 |
| - $callable[0] |
94 |
| - )); |
95 |
| - } else { |
| 88 | + } catch (NotFoundException $e) { |
| 89 | + if ($isStaticCallToNonStaticMethod) { |
| 90 | + throw new NotCallableException(sprintf( |
| 91 | + 'Cannot call %s::%s() because %s() is not a static method and "%s" is not a container entry', |
| 92 | + $callable[0], |
| 93 | + $callable[1], |
| 94 | + $callable[1], |
| 95 | + $callable[0] |
| 96 | + )); |
| 97 | + } |
96 | 98 | throw new NotCallableException(sprintf(
|
97 | 99 | 'Cannot call %s on %s because it is not a class nor a valid container entry',
|
98 | 100 | $callable[1],
|
|
0 commit comments