1 | <?php namespace Arcanesoft\Auth\Seeds; |
||
13 | abstract class PermissionsSeeder extends Seeder |
||
14 | { |
||
15 | /* ------------------------------------------------------------------------------------------------ |
||
16 | | Main Functions |
||
17 | | ------------------------------------------------------------------------------------------------ |
||
18 | */ |
||
19 | /** |
||
20 | * Seed permissions. |
||
21 | * |
||
22 | * @param array $permissions |
||
23 | */ |
||
24 | public function seed(array $permissions) |
||
30 | |||
31 | /* ------------------------------------------------------------------------------------------------ |
||
32 | | Other Functions |
||
33 | | ------------------------------------------------------------------------------------------------ |
||
34 | */ |
||
35 | /** |
||
36 | * @param array $seeds |
||
37 | * |
||
38 | * @return array |
||
39 | */ |
||
40 | protected function prepareSeeds(array $seeds) |
||
51 | } |
||
52 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.