Skip to content

Commit

Permalink
Rename classes
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiNN1 committed Sep 9, 2023
1 parent bcb930f commit bad765e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Dashboards/Memcached/Compatibility/Memcache.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace RobiNN\Pca\Dashboards\Memcached\Compatibility;

class Memcache extends \Memcache implements CompatibilityInterface {
class Memcache extends \Memcache implements MemcachedCompatibilityInterface {
use MemcachedKeys;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Dashboards/Memcached/Compatibility/Memcached.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace RobiNN\Pca\Dashboards\Memcached\Compatibility;

class Memcached extends \Memcached implements CompatibilityInterface {
class Memcached extends \Memcached implements MemcachedCompatibilityInterface {
use MemcachedKeys;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace RobiNN\Pca\Dashboards\Memcached\Compatibility;

interface CompatibilityInterface {
interface MemcachedCompatibilityInterface {
public function isConnected(): bool;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Dashboards/Memcached/Compatibility/MemcachedKeys.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
use RobiNN\Pca\Dashboards\Memcached\MemcachedException;

trait MemcachedKeys {
use CommandTrait;
use RunCommand;

/**
* Get all the keys.
Expand Down
2 changes: 1 addition & 1 deletion src/Dashboards/Memcached/Compatibility/PHPMem.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

use RobiNN\Pca\Dashboards\Memcached\MemcachedException;

class PHPMem implements CompatibilityInterface {
class PHPMem implements MemcachedCompatibilityInterface {
use MemcachedKeys;

public const VERSION = '1.1.0';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

use RobiNN\Pca\Dashboards\Memcached\MemcachedException;

trait CommandTrait {
trait RunCommand {
/**
* Unknown or incorrect commands can cause an infinite loop,
* so only tested commands are allowed.
Expand Down
2 changes: 1 addition & 1 deletion src/Dashboards/Redis/Compatibility/Predis.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Predis\Collection\Iterator\Keyspace;
use RobiNN\Pca\Dashboards\DashboardException;

class Predis extends Client implements CompatibilityInterface {
class Predis extends Client implements RedisCompatibilityInterface {
use RedisJson;
use RedisModules;

Expand Down
2 changes: 1 addition & 1 deletion src/Dashboards/Redis/Compatibility/Redis.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
use RedisException;
use RobiNN\Pca\Dashboards\DashboardException;

class Redis extends \Redis implements CompatibilityInterface {
class Redis extends \Redis implements RedisCompatibilityInterface {
use RedisJson;
use RedisModules;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

use RobiNN\Pca\Dashboards\DashboardException;

interface CompatibilityInterface {
interface RedisCompatibilityInterface {
/**
* Get a key type.
*
Expand Down

0 comments on commit bad765e

Please sign in to comment.