| 1 | <?php |
||
| 10 | trait GraphLoaderTrait |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @see LoaderInterface::retrieveAll() |
||
| 14 | */ |
||
| 15 | public function retrieveAll(array $filters = array(), $limit = null, $offset = null) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @see LoaderInterface::retrieveOne() |
||
| 22 | */ |
||
| 23 | public function retrieveOne(array $filters = array()) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @see LoaderInterface::retrieve() |
||
| 30 | */ |
||
| 31 | public function retrieve($id) |
||
| 35 | } |
||
| 36 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.