core: Fix PHPCS violations

This commit is contained in:
logmanoriginal 2018-11-13 18:27:05 +01:00
parent c296e73c18
commit c15b25a07d
3 changed files with 13 additions and 13 deletions

View file

@ -19,7 +19,7 @@ class Bridge {
* @param string $nameBridge Defined bridge name you want use
* @return Bridge object dedicated
*/
static public function create($nameBridge){
public static function create($nameBridge){
if(!preg_match('@^[A-Z][a-zA-Z0-9-]*$@', $nameBridge)) {
$message = <<<EOD
'nameBridge' must start with one uppercase character followed or not by
@ -45,7 +45,7 @@ EOD;
return false;
}
static public function setDir($dirBridge){
public static function setDir($dirBridge){
if(!is_string($dirBridge)) {
throw new \InvalidArgumentException('Dir bridge must be a string.');
}
@ -57,7 +57,7 @@ EOD;
self::$dirBridge = $dirBridge;
}
static public function getDir(){
public static function getDir(){
if(is_null(self::$dirBridge)) {
throw new \LogicException(__CLASS__ . ' class need to know bridge path !');
}
@ -69,7 +69,7 @@ EOD;
* Lists the available bridges.
* @return array List of the bridges
*/
static public function listBridges(){
public static function listBridges(){
static $listBridge = array(); // Initialized on first call
@ -91,7 +91,7 @@ EOD;
/**
* @return bool Returns true if the given bridge is whitelisted.
*/
static public function isWhitelisted($name){
public static function isWhitelisted($name){
return in_array(Bridge::sanitizeBridgeName($name), Bridge::getWhitelist());
}

View file

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

View file

@ -8,7 +8,7 @@ class Format {
throw new \LogicException('Please use ' . __CLASS__ . '::create for new object.');
}
static public function create($nameFormat){
public static function create($nameFormat){
if(!preg_match('@^[A-Z][a-zA-Z]*$@', $nameFormat)) {
throw new \InvalidArgumentException('Name format must be at least
one uppercase follow or not by alphabetic characters.');
@ -26,7 +26,7 @@ class Format {
return new $nameFormat();
}
static public function setDir($dirFormat){
public static function setDir($dirFormat){
if(!is_string($dirFormat)) {
throw new \InvalidArgumentException('Dir format must be a string.');
}
@ -38,7 +38,7 @@ class Format {
self::$dirFormat = $dirFormat;
}
static public function getDir(){
public static function getDir(){
$dirFormat = self::$dirFormat;
if(is_null($dirFormat)) {
@ -52,7 +52,7 @@ class Format {
* Read format dir and catch informations about each format depending annotation
* @return array Informations about each format
*/
static public function searchInformation(){
public static function searchInformation(){
$pathDirFormat = self::getDir();
$listFormat = array();