| Total Complexity | 4 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class Inspector |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var Executor[][] |
||
| 19 | */ |
||
| 20 | private $executors = []; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var Sourcing |
||
| 24 | */ |
||
| 25 | private $sourcing = null; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Inspector constructor. |
||
| 29 | * @param Sourcing $sourcing |
||
| 30 | */ |
||
| 31 | public function __construct(Sourcing $sourcing) |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param string $class |
||
| 38 | * @param string $method |
||
| 39 | * @param Executor $executor |
||
| 40 | */ |
||
| 41 | public function join(string $class, string $method, Executor $executor) : void |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param string $class |
||
| 48 | * @param string $method |
||
| 49 | * @param mixed $input |
||
| 50 | * @throws Throwable |
||
| 51 | */ |
||
| 52 | public function valid(string $class, string $method, $input) |
||
| 59 |