1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-17 02:24:05 +02:00

refactor(core): fix code standard for Cache Drivers #347

This commit is contained in:
Awilum
2020-02-19 23:33:52 +03:00
parent 9b0f404ec5
commit 74e7558ce8
9 changed files with 9 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ use Psr\Container\ContainerInterface;
class AcpuAdapter implements CacheAdapterInterface
{
function __construct(ContainerInterface $flextype)
public function __construct(ContainerInterface $flextype)
{
$this->flextype = $flextype;
}

View File

@@ -9,7 +9,7 @@ use Psr\Container\ContainerInterface;
class ArrayAdapter implements CacheAdapterInterface
{
function __construct(ContainerInterface $flextype)
public function __construct(ContainerInterface $flextype)
{
$this->flextype = $flextype;
}

View File

@@ -13,7 +13,7 @@ interface CacheAdapterInterface
*
* @return void
*/
function __construct(ContainerInterface $container);
public function __construct(ContainerInterface $container);
/**
* Returns the cache driver object

View File

@@ -10,7 +10,7 @@ use Psr\Container\ContainerInterface;
class FilesystemAdapter implements CacheAdapterInterface
{
function __construct(ContainerInterface $flextype)
public function __construct(ContainerInterface $flextype)
{
$this->flextype = $flextype;
}

View File

@@ -10,7 +10,7 @@ use Psr\Container\ContainerInterface;
class MemcachedAdapter implements CacheAdapterInterface
{
function __construct(ContainerInterface $flextype)
public function __construct(ContainerInterface $flextype)
{
$this->flextype = $flextype;
}

View File

@@ -11,7 +11,7 @@ use RedisException;
class RedisAdapter implements CacheAdapterInterface
{
function __construct(ContainerInterface $flextype)
public function __construct(ContainerInterface $flextype)
{
$this->flextype = $flextype;
}

View File

@@ -11,7 +11,7 @@ use SQLite3;
class SQLite3Adapter implements CacheAdapterInterface
{
function __construct(ContainerInterface $flextype)
public function __construct(ContainerInterface $flextype)
{
$this->flextype = $flextype;
}

View File

@@ -9,7 +9,7 @@ use Psr\Container\ContainerInterface;
class WinCacheAdapter implements CacheAdapterInterface
{
function __construct(ContainerInterface $flextype)
public function __construct(ContainerInterface $flextype)
{
$this->flextype = $flextype;
}

View File

@@ -9,7 +9,7 @@ use Psr\Container\ContainerInterface;
class ZendDataCacheAdapter implements CacheAdapterInterface
{
function __construct(ContainerInterface $flextype)
public function __construct(ContainerInterface $flextype)
{
$this->flextype = $flextype;
}