| 1 | <?php |
||
| 7 | class MethodAction extends StaticMethodAction { |
||
| 8 | |||
| 9 | /** @var object */ |
||
| 10 | private $object; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param object $object |
||
| 14 | * @param string $method |
||
| 15 | * @param TypeFactory $types |
||
| 16 | * @param CommentParser $parser |
||
| 17 | */ |
||
| 18 | public function __construct($object, $method, TypeFactory $types, CommentParser $parser) { |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param mixed[] $parameters Values indexed by name |
||
| 25 | * @return mixed the result of the execution |
||
| 26 | * @throws \Exception if Action cannot be executed |
||
| 27 | */ |
||
| 28 | public function execute(array $parameters) { |
||
| 40 | } |