File tree Expand file tree Collapse file tree 4 files changed +39
-3
lines changed Expand file tree Collapse file tree 4 files changed +39
-3
lines changed Original file line number Diff line number Diff line change 2020
2121interface UserResolverContractInterface
2222{
23-
2423 public function create (array $ values = []): User ;
2524
2625 public function getById (int $ id ): ?User ;
Original file line number Diff line number Diff line change 11<?php
22declare (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+
417namespace Pimcore \Bundle \StaticResolverBundle \Contract \Models \User ;
518
619use Pimcore \Model \User \UserRole ;
Original file line number Diff line number Diff line change 11<?php
22declare (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+
417namespace Pimcore \Bundle \StaticResolverBundle \Models \User ;
518
619use Pimcore \Bundle \StaticResolverBundle \Contract \Models \User \UserRoleResolverContract ;
720
821class UserRoleResolver extends UserRoleResolverContract implements UserRoleResolverInterface
922{
10-
1123}
Original file line number Diff line number Diff line change 11<?php
22declare (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+
417namespace Pimcore \Bundle \StaticResolverBundle \Models \User ;
518
619use Pimcore \Bundle \StaticResolverBundle \Contract \Models \User \UserRoleResolverContractInterface ;
720
821interface UserRoleResolverInterface extends UserRoleResolverContractInterface
922{
10-
1123}
You can’t perform that action at this time.
0 commit comments