| 1 | <?php |
||
| 28 | class Table extends CakeTable |
||
| 29 | { |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Callback before request data is converted into entities. |
||
| 33 | * |
||
| 34 | * @param Event $event |
||
| 35 | * @param \ArrayObject $data |
||
| 36 | * @param \ArrayObject $options |
||
| 37 | * @return void |
||
| 38 | * @SuppressWarnings("unused") |
||
| 39 | */ |
||
| 40 | public function beforeMarshal(Event $event, \ArrayObject $data, \ArrayObject $options) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Prepare params data. |
||
| 47 | * |
||
| 48 | * @param \ArrayObject $data |
||
| 49 | * @return void |
||
| 50 | */ |
||
| 51 | protected function _prepareParamsData(\ArrayObject $data) |
||
| 58 | } |
||
| 59 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.