1 | <?php |
||
25 | abstract class AbstractOperation implements OperationInterface |
||
26 | { |
||
27 | protected $parameter = array(); |
||
28 | |||
29 | /** |
||
30 | * Returns an array of responseGroups |
||
31 | * |
||
32 | 2 | * @return array |
|
33 | */ |
||
34 | 2 | public function getResponseGroup() |
|
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | 16 | public function setResponseGroup(array $responseGroup) |
|
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function getOperationParameter() |
||
56 | |||
57 | 12 | /** |
|
58 | 1 | * Returns a single operation parameter if set |
|
59 | * |
||
60 | 1 | * @param string $keyName |
|
61 | * @return mixed|null |
||
62 | */ |
||
63 | 12 | public function getSingleOperationParameter($keyName) { |
|
66 | 11 | ||
67 | /** |
||
68 | * Magic setter and getter functions |
||
69 | 1 | * |
|
70 | * @param string $methodName Methodname |
||
71 | * @param string $parameter Parameters |
||
72 | * |
||
73 | * @return \ApaiIO\Operations\AbstractOperation |
||
74 | */ |
||
75 | public function __call($methodName, $parameter) |
||
91 | } |
||
92 |