Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1.0156 |
Changes | 0 |
1 | <?php |
||
27 | 2 | public function setUp() |
|
28 | { |
||
29 | parent::setUp(); |
||
30 | 2 | $this->userService = $this->app->make(UserServiceContract::class); |
|
31 | $this->app->make(AuthorizationContract::class)->clearPermissionCache(); |
||
32 | $this->app->make(\Spatie\Permission\PermissionRegistrar::class)->registerPermissions(); |
||
33 | 2 | $this->seedData(); |
|
34 | } |
||
57 |