Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
herbertroth authored and github-actions[bot] committed Sep 20, 2023
1 parent b0557c3 commit ef3a1b7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/Proxy/Factory/Events/ProxyEventFactory.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
<?php
declare(strict_types=1);

/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Commercial License (PCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PCL
*/

namespace Pimcore\Bundle\StaticResolverBundle\Proxy\Factory\Events;

use Pimcore\Bundle\StaticResolverBundle\Proxy\Events\ProxyEvent;
Expand All @@ -13,4 +26,3 @@ public function createProxyEvent(mixed $subject = null, array $arguments = []):
return new ProxyEvent($subject, $arguments);
}
}

13 changes: 13 additions & 0 deletions src/Proxy/Factory/Events/ProxyEventFactoryInterface.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
<?php
declare(strict_types=1);

/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Commercial License (PCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PCL
*/

namespace Pimcore\Bundle\StaticResolverBundle\Proxy\Factory\Events;

use Pimcore\Bundle\StaticResolverBundle\Proxy\Events\ProxyEventInterface;
Expand Down

0 comments on commit ef3a1b7

Please sign in to comment.