support creating new roles (#1050)

This commit is contained in:
Kevin Papst
2019-08-20 14:02:15 +02:00
committed by GitHub
parent 299fcb091a
commit 7cd17154fc
7 changed files with 78 additions and 23 deletions

View File

@@ -0,0 +1,31 @@
<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Tests\Mocks\Security;
use App\Entity\User;
use App\Security\RoleService;
use App\Tests\Mocks\AbstractMockFactory;
class RoleServiceFactory extends AbstractMockFactory
{
public function create($roles = null): RoleService
{
if (null === $roles) {
$roles = [
User::ROLE_USER => [],
User::ROLE_TEAMLEAD => [User::ROLE_USER],
User::ROLE_ADMIN => [User::ROLE_TEAMLEAD],
User::ROLE_SUPER_ADMIN => [User::ROLE_ADMIN],
];
}
return new RoleService($roles);
}
}