Conditions | 3 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
17 | public function setRegistry($registry) |
||
18 | { |
||
19 | if ($registry !== TableRegistry::class && $registry !== AsyncTableRegistry::class) { |
||
20 | throw new \InvalidArgumentException('Not a AsyncTableRegistry or TableRegistry'); |
||
21 | } |
||
22 | |||
23 | $this->registry = $registry; |
||
24 | } |
||
25 | |||
34 |