@@ -27,6 +27,9 @@ discard block |
||
| 27 | 27 | } |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | + /** |
|
| 31 | + * @param string $function |
|
| 32 | + */ |
|
| 30 | 33 | function _applyPlugin($function, $args) { |
| 31 | 34 | foreach ($this->plugins as $plugin) { |
| 32 | 35 | if (method_exists($plugin, $function)) { |
@@ -46,6 +49,9 @@ discard block |
||
| 46 | 49 | return $this->_callParent($function, $args); |
| 47 | 50 | } |
| 48 | 51 | |
| 52 | + /** |
|
| 53 | + * @param string $function |
|
| 54 | + */ |
|
| 49 | 55 | function _appendPlugin($function, $args) { |
| 50 | 56 | $return = $this->_callParent($function, $args); |
| 51 | 57 | foreach ($this->plugins as $plugin) { |