8000 Merge branch '4.4' into 5.2 · symfony/cache@3b2a91a · GitHub
[go: up one dir, main page]

Skip to content

Commit 3b2a91a

Browse files
Merge branch '4.4' into 5.2
* 4.4: CS fix
2 parents 439f38f + 1db5a60 commit 3b2a91a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Adapter/AbstractAdapter.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
*/
2626
abstract class AbstractAdapter implements AdapterInterface, CacheInterface, LoggerAwareInterface, ResettableInterface
2727
{
28+
use AbstractAdapterTrait;
29+
use ContractsTrait;
30+
2831
/**
2932
* @internal
3033
*/
3134
protected const NS_SEPARATOR = ':';
3235

33-
use AbstractAdapterTrait;
34-
use ContractsTrait;
35-
3636
private static $apcuSupported;
3737
private static $phpFilesSupported;
3838

Adapter/Psr16Adapter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
*/
2424
class Psr16Adapter extends AbstractAdapter implements PruneableInterface, ResettableInterface
2525
{
26+
use ProxyTrait;
27+
2628
/**
2729
* @internal
2830
*/
2931
protected const NS_SEPARATOR = '_';
3032

31-
use ProxyTrait;
32-
3333
private $miss;
3434

3535
public function __construct(CacheInterface $pool, string $namespace = '', int $defaultLifetime = 0)

Adapter/TagAwareAdapter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
*/
2828
class TagAwareAdapter implements TagAwareAdapterInterface, TagAwareCacheInterface, PruneableInterface, ResettableInterface, LoggerAwareInterface
2929
{
30-
public const TAGS_PREFIX = "\0tags\0";
31-
3230
use ContractsTrait;
3331
use LoggerAwareTrait;
3432
use ProxyTrait;
3533

34+
public const TAGS_PREFIX = "\0tags\0";
35+
3636
private $deferred = [];
3737
private $createCacheItem;
3838
private $setCacheItemTags;

0 commit comments

Comments
 (0)
0