Rename NAME to constant

This commit is contained in:
Philipp Holzer 2023-07-26 22:42:40 +02:00
parent bbfec06a3d
commit 9ff89a970a
Signed by: nupplaPhil
GPG Key ID: 24A7501396EB5432
9 changed files with 11 additions and 11 deletions

View File

@ -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.');
}

View File

@ -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;

View File

@ -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;
}
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -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();
}