Skip to content

Commit b889a3d

Browse files
herbertrothgithub-actions[bot]
authored andcommitted
Apply php-cs-fixer changes
1 parent 8ad2cff commit b889a3d

7 files changed

+54
-4
lines changed

src/Contract/Lib/Cache/RuntimeCacheResolverContract.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,4 @@ public function getInstance(): RuntimeCache
7272
{
7373
return RuntimeCache::getInstance();
7474
}
75-
7675
}

src/Contract/Lib/Cache/RuntimeCacheResolverContractInterface.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\Lib\Cache;
518

619
use Pimcore\Cache\RuntimeCache;

src/Contract/Lib/CacheResolverContract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function clearTags(array $tag = []): bool
7171
{
7272
return Cache::clearTags($tag);
7373
}
74-
74+
7575
public function addClearTagOnShutdown(string $tag): void
7676
{
7777
Cache::addClearTagOnShutdown($tag);

src/Contract/Lib/CacheResolverContractInterface.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\Lib;
518

619
use DateInterval;

src/Contract/Lib/PimcoreResolverContractInterface.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\Lib;
518

619
interface PimcoreResolverContractInterface

src/Contract/Lib/ToolResolverContract.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ public function getHttpData(
9090
array $paramsGet = [],
9191
array $paramsPost = [],
9292
array $options = []
93-
): false|string
94-
{
93+
): false|string {
9594
return Tool::getHttpData($url, $paramsGet, $paramsPost, $options);
9695
}
9796
}

src/Contract/Lib/ToolResolverContractInterface.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\Lib;
518

619
use Exception;

0 commit comments

Comments
 (0)