Skip to content

Commit 1f4ca63

Browse files
authored
Avoid calls to Container::has() that can be avoided (#12)
For performance reasons.
1 parent 4140c38 commit 1f4ca63

File tree

3 files changed

+28
-12
lines changed

3 files changed

+28
-12
lines changed

src/CallableResolver.php

+14-12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace Invoker;
44

55
use Interop\Container\ContainerInterface;
6+
use Interop\Container\Exception\NotFoundException;
67
use Invoker\Exception\NotCallableException;
78

89
/**
@@ -70,29 +71,30 @@ private function resolveFromContainer($callable)
7071

7172
// The callable is a container entry name
7273
if (is_string($callable)) {
73-
if ($this->container->has($callable)) {
74+
try {
7475
return $this->container->get($callable);
75-
} else {
76+
} catch (NotFoundException $e) {
7677
throw NotCallableException::fromInvalidCallable($callable, true);
7778
}
7879
}
7980

8081
// The callable is an array whose first item is a container entry name
8182
// e.g. ['some-container-entry', 'methodToCall']
8283
if (is_array($callable) && is_string($callable[0])) {
83-
if ($this->container->has($callable[0])) {
84+
try {
8485
// Replace the container entry name by the actual object
8586
$callable[0] = $this->container->get($callable[0]);
8687
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+
}
9698
throw new NotCallableException(sprintf(
9799
'Cannot call %s on %s because it is not a class nor a valid container entry',
98100
$callable[1],

tests/Mock/ArrayContainer.php

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ public function __construct(array $entries = array())
1818

1919
public function get($id)
2020
{
21+
if (!array_key_exists($id, $this->entries)) {
22+
throw new NotFound;
23+
}
24+
2125
return $this->entries[$id];
2226
}
2327

tests/Mock/NotFound.php

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
declare(strict_types = 1);
3+
4+
namespace Invoker\Test\Mock;
5+
6+
use Interop\Container\Exception\NotFoundException;
7+
8+
class NotFound extends \Exception implements NotFoundException
9+
{
10+
}

0 commit comments

Comments
 (0)