| 1 | <?php |
||
| 10 | class Marshal |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param string $command |
||
| 14 | * @param ArrayAccess $input |
||
| 15 | * @param array $extra |
||
| 16 | * @return object |
||
| 17 | */ |
||
| 18 | 9 | public function getClassInstance($command, ArrayAccess $input, array $extra = []) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Get a parameter value for a marshaled command. |
||
| 35 | * |
||
| 36 | * @param ArrayAccess $source |
||
| 37 | * @param ReflectionParameter $parameter |
||
| 38 | * @param array $extras |
||
| 39 | * |
||
| 40 | * @return mixed |
||
| 41 | */ |
||
| 42 | 4 | protected function getParameterValueForCommand( |
|
| 61 | } |
||
| 62 |