| 1 | <?php |
||
| 5 | abstract class FileModel extends SqliteModel |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * loadFromResource. |
||
| 9 | * |
||
| 10 | * @return \Illuminate\Support\Collection |
||
| 11 | */ |
||
| 12 | abstract protected function loadFromResource(); |
||
| 13 | |||
| 14 | /** |
||
| 15 | * initializeTable. |
||
| 16 | * |
||
| 17 | * @param $table |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | protected function initializeTable($table) |
||
| 26 | } |
||
| 27 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.