Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
20 | class AuthManagerTest extends \PHPUnit\Framework\TestCase |
||
21 | { |
||
22 | use CheckAccessTrait; |
||
|
|||
23 | |||
24 | /** |
||
25 | * @var AuthManager |
||
26 | */ |
||
27 | protected $auth; |
||
28 | |||
29 | protected function setUp(): void |
||
30 | { |
||
31 | $this->auth = $this->createObject(AuthManager::class); |
||
32 | |||
33 | $this->setAssignments(); |
||
34 | } |
||
35 | |||
36 | protected function createObject($config) |
||
39 | } |
||
40 | } |
||
41 |