1 | <?php namespace Arcanesoft\Auth\Seeds\Foundation; |
||
14 | class UserTableSeeder extends Seeder |
||
15 | { |
||
16 | /* ----------------------------------------------------------------- |
||
17 | | Main Methods |
||
18 | | ----------------------------------------------------------------- |
||
19 | */ |
||
20 | |||
21 | /** |
||
22 | * Run the database seeds. |
||
23 | */ |
||
24 | public function run() |
||
28 | |||
29 | /* ----------------------------------------------------------------- |
||
30 | | Other Methods |
||
31 | | ----------------------------------------------------------------- |
||
32 | */ |
||
33 | |||
34 | /** |
||
35 | * Seed the admin account. |
||
36 | */ |
||
37 | private function seedAdminUser() |
||
47 | |||
48 | /** |
||
49 | * Get the admin user's attributes. |
||
50 | * |
||
51 | * @return array |
||
52 | */ |
||
53 | private function getAdminUserAttributes() |
||
70 | } |
||
71 |