| 1 | <?php |
||
| 5 | class NegatedCallback extends Callback |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Call the target callable, with an array of arguments |
||
| 9 | * |
||
| 10 | * @param array $arguments The parameters to be passed to the callback, as an indexed array. |
||
| 11 | * |
||
| 12 | * @return mixed Returns the return value of the callback, or FALSE on error. |
||
| 13 | */ |
||
| 14 | public function callArray(array $arguments = []) |
||
| 18 | } |
||
| 19 |