Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class DemoSeeder extends Seeder |
||
17 | { |
||
18 | public $seed = false; |
||
19 | |||
20 | public $service; |
||
21 | |||
22 | /** |
||
23 | * DemoSeeder constructor. |
||
24 | * @param bool $seed |
||
25 | */ |
||
26 | public function __construct(Auth0ServiceContract $auth0Service) |
||
27 | { |
||
28 | $this->service = $auth0Service; |
||
29 | } |
||
30 | |||
31 | |||
32 | /** |
||
33 | * Run the database seeds. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | public function run() |
||
43 | ]); |
||
44 | } |
||
46 |