1 | <?php |
||
7 | class ChainedInflector implements MethodNameInflector |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @var MethodNameInflector[] |
||
12 | */ |
||
13 | private $inflectors = []; |
||
14 | |||
15 | /** |
||
16 | * @param MethodNameInflector[] $inflectors |
||
17 | */ |
||
18 | public function __construct(array $inflectors) |
||
24 | |||
25 | public function inflect($command, $handler) |
||
35 | } |
||
36 |