Skip to content

Commit 45873cb

Browse files
herbertrothgithub-actions[bot]
authored andcommitted
Apply php-cs-fixer changes
1 parent b4e1492 commit 45873cb

File tree

4 files changed

+39
-3
lines changed

4 files changed

+39
-3
lines changed

src/Contract/Models/User/UserResolverContractInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
interface UserResolverContractInterface
2222
{
23-
2423
public function create(array $values = []): User;
2524

2625
public function getById(int $id): ?User;

src/Contract/Models/User/UserRoleResolverContract.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
<?php
22
declare(strict_types=1);
33

4+
/**
5+
* Pimcore
6+
*
7+
* This source file is available under two different licenses:
8+
* - GNU General Public License version 3 (GPLv3)
9+
* - Pimcore Commercial License (PCL)
10+
* Full copyright and license information is available in
11+
* LICENSE.md which is distributed with this source code.
12+
*
13+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
14+
* @license http://www.pimcore.org/license GPLv3 and PCL
15+
*/
16+
417
namespace Pimcore\Bundle\StaticResolverBundle\Contract\Models\User;
518

619
use Pimcore\Model\User\UserRole;
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
<?php
22
declare(strict_types=1);
33

4+
/**
5+
* Pimcore
6+
*
7+
* This source file is available under two different licenses:
8+
* - GNU General Public License version 3 (GPLv3)
9+
* - Pimcore Commercial License (PCL)
10+
* Full copyright and license information is available in
11+
* LICENSE.md which is distributed with this source code.
12+
*
13+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
14+
* @license http://www.pimcore.org/license GPLv3 and PCL
15+
*/
16+
417
namespace Pimcore\Bundle\StaticResolverBundle\Models\User;
518

619
use Pimcore\Bundle\StaticResolverBundle\Contract\Models\User\UserRoleResolverContract;
720

821
class UserRoleResolver extends UserRoleResolverContract implements UserRoleResolverInterface
922
{
10-
1123
}
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
<?php
22
declare(strict_types=1);
33

4+
/**
5+
* Pimcore
6+
*
7+
* This source file is available under two different licenses:
8+
* - GNU General Public License version 3 (GPLv3)
9+
* - Pimcore Commercial License (PCL)
10+
* Full copyright and license information is available in
11+
* LICENSE.md which is distributed with this source code.
12+
*
13+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
14+
* @license http://www.pimcore.org/license GPLv3 and PCL
15+
*/
16+
417
namespace Pimcore\Bundle\StaticResolverBundle\Models\User;
518

619
use Pimcore\Bundle\StaticResolverBundle\Contract\Models\User\UserRoleResolverContractInterface;
720

821
interface UserRoleResolverInterface extends UserRoleResolverContractInterface
922
{
10-
1123
}

0 commit comments

Comments
 (0)