| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function execute(array $parameters) { |
||
| 29 | $injector = function () { |
||
| 30 | }; |
||
| 31 | $filter = function () { |
||
| 32 | return true; |
||
| 33 | }; |
||
| 34 | |||
| 35 | $analyzer = new MethodAnalyzer($this->method); |
||
| 36 | $arguments = $analyzer->fillParameters($parameters, $injector, $filter); |
||
| 37 | |||
| 38 | return $this->method->invokeArgs($this->object, $arguments); |
||
| 39 | } |
||
| 40 | } |