Rename NAME to constant

pull/13298/head
Philipp 2023-07-26 22:42:40 +02:00
rodzic bbfec06a3d
commit 9ff89a970a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 24A7501396EB5432
9 zmienionych plików z 11 dodań i 11 usunięć

Wyświetl plik

@ -69,7 +69,7 @@ class Cache
*/
public function createDistributed(string $type = null): ICanCache
{
if ($type === Type\APCuCache::$NAME) {
if ($type === Type\APCuCache::NAME) {
throw new InvalidCacheDriverException('apcu doesn\'t support distributed caching.');
}

Wyświetl plik

@ -30,7 +30,7 @@ use Friendica\Core\Cache\Exception\InvalidCacheDriverException;
*/
class APCuCache extends AbstractCache implements ICanCacheInMemory
{
public static $NAME = 'apcu';
const NAME = 'apcu';
use CompareSetTrait;
use CompareDeleteTrait;

Wyświetl plik

@ -28,7 +28,7 @@ use Friendica\Core\Cache\Capability\ICanCache;
*/
abstract class AbstractCache implements ICanCache
{
public static $NAME = '';
const NAME = '';
/**
* @var string The hostname
@ -111,6 +111,6 @@ abstract class AbstractCache implements ICanCache
/** {@inheritDoc} */
public function getName(): string
{
return static::$NAME;
return static::NAME;
}
}

Wyświetl plik

@ -29,7 +29,7 @@ use Friendica\Core\Cache\Enum;
*/
class ArrayCache extends AbstractCache implements ICanCacheInMemory
{
public static $NAME = 'array';
const NAME = 'array';
use CompareDeleteTrait;

Wyświetl plik

@ -32,7 +32,7 @@ use Friendica\Util\DateTimeFormat;
*/
class DatabaseCache extends AbstractCache implements ICanCache
{
public static $NAME = 'database';
const NAME = 'database';
/**
* @var Database

Wyświetl plik

@ -33,7 +33,7 @@ use Memcache;
*/
class MemcacheCache extends AbstractCache implements ICanCacheInMemory
{
static $NAME = 'memcached';
const NAME = 'memcached';
use CompareSetTrait;
use CompareDeleteTrait;

Wyświetl plik

@ -34,7 +34,7 @@ use Psr\Log\LoggerInterface;
*/
class MemcachedCache extends AbstractCache implements ICanCacheInMemory
{
static $NAME = 'memcached';
const NAME = 'memcached';
use CompareSetTrait;
use CompareDeleteTrait;

Wyświetl plik

@ -33,7 +33,7 @@ use Redis;
*/
class RedisCache extends AbstractCache implements ICanCacheInMemory
{
public static $NAME = 'redis';
const NAME = 'redis';
/**
* @var Redis

Wyświetl plik

@ -250,8 +250,8 @@ abstract class CacheTest extends MockedTest
public function testGetName()
{
if (property_exists($this->instance, '$NAME')) {
self::assertEquals($this->instance::$NAME, $this->instance->getName());
if (defined(get_class($this->instance) . '::NAME')) {
self::assertEquals($this->instance::NAME, $this->instance->getName());
} else {
self::expectNotToPerformAssertions();
}