1 | <?php namespace BuildR\Utils\Extension; |
||
16 | abstract class AbstractObjectExtension implements ObjectExtensionInterface { |
||
17 | |||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | 2 | public function hasMethod($methodName) { |
|
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | 2 | public function methodReturnedRawResult($methodName) { |
|
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | 2 | public function runMethod($methodName, $startingValue, array $additionalArguments) { |
|
48 | } |
||
49 |