mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-06-26 15:18:40 +02:00
core: Fix PHPCS violations
This commit is contained in:
parent
c296e73c18
commit
c15b25a07d
3 changed files with 13 additions and 13 deletions
|
@ -8,7 +8,7 @@ class Cache {
|
|||
throw new \LogicException('Please use ' . __CLASS__ . '::create for new object.');
|
||||
}
|
||||
|
||||
static public function create($nameCache){
|
||||
public static function create($nameCache){
|
||||
if(!static::isValidNameCache($nameCache)) {
|
||||
throw new \InvalidArgumentException('Name cache must be at least one
|
||||
uppercase follow or not by alphanumeric or dash characters.');
|
||||
|
@ -25,7 +25,7 @@ class Cache {
|
|||
return new $nameCache();
|
||||
}
|
||||
|
||||
static public function setDir($dirCache){
|
||||
public static function setDir($dirCache){
|
||||
if(!is_string($dirCache)) {
|
||||
throw new \InvalidArgumentException('Dir cache must be a string.');
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ class Cache {
|
|||
self::$dirCache = $dirCache;
|
||||
}
|
||||
|
||||
static public function getDir(){
|
||||
public static function getDir(){
|
||||
$dirCache = self::$dirCache;
|
||||
|
||||
if(is_null($dirCache)) {
|
||||
|
@ -47,7 +47,7 @@ class Cache {
|
|||
return $dirCache;
|
||||
}
|
||||
|
||||
static public function isValidNameCache($nameCache){
|
||||
public static function isValidNameCache($nameCache){
|
||||
return preg_match('@^[A-Z][a-zA-Z0-9-]*$@', $nameCache);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue