1 | <?php namespace Arcanedev\Support\Database; |
||
12 | abstract class Seeder extends IlluminateSeeder |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Properties |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | /** |
||
20 | * Seeder collection. |
||
21 | * |
||
22 | * @var array |
||
23 | */ |
||
24 | protected $seeds = []; |
||
25 | |||
26 | /* ----------------------------------------------------------------- |
||
27 | | Main Methods |
||
28 | | ----------------------------------------------------------------- |
||
29 | */ |
||
30 | |||
31 | /** |
||
32 | * Run the database seeds. |
||
33 | */ |
||
34 | public function run() |
||
44 | } |
||
45 |