| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2.0185 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 5 | public function __construct(callable $callable, $classOrObjectFactory = null) |
|
| 18 | { |
||
| 19 | 5 | if (!is_callable($callable)) { |
|
| 20 | throw new \InvalidArgumentException('Cannot call callable'); |
||
| 21 | } |
||
| 22 | 5 | $this->callable = $callable; |
|
| 23 | |||
| 24 | 5 | parent::__construct(new \SplObjectStorage(), $classOrObjectFactory); |
|
| 25 | 5 | } |
|
| 26 | |||
| 36 |