@@ -42,7 +42,7 @@ |
||
| 42 | 42 | $parts = explode('#', $input); |
| 43 | 43 | array_walk( |
| 44 | 44 | $parts, |
| 45 | - function (&$value) { |
|
| 45 | + function(&$value) { |
|
| 46 | 46 | $value = ucfirst(strtolower($value)); |
| 47 | 47 | } |
| 48 | 48 | ); |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | public static function mergeArrayOverwrite() |
| 71 | 71 | { |
| 72 | 72 | if (func_num_args() < 2) { |
| 73 | - throw new InvalidArgumentException(__CLASS__ . '::' . __METHOD__ . ' needs two or more array arguments'); |
|
| 73 | + throw new InvalidArgumentException(__CLASS__.'::'.__METHOD__.' needs two or more array arguments'); |
|
| 74 | 74 | } |
| 75 | 75 | $arrays = func_get_args(); |
| 76 | 76 | $merged = []; |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | while ($arrays) { |
| 79 | 79 | $array = array_shift($arrays); |
| 80 | 80 | if (!is_array($array)) { |
| 81 | - throw new InvalidArgumentException(__CLASS__ . '::' . __METHOD__ . ' encountered a non array argument'); |
|
| 81 | + throw new InvalidArgumentException(__CLASS__.'::'.__METHOD__.' encountered a non array argument'); |
|
| 82 | 82 | } |
| 83 | 83 | if (!$array) { |
| 84 | 84 | continue; |
@@ -13,9 +13,9 @@ |
||
| 13 | 13 | |
| 14 | 14 | namespace WebHemi\Data\Storage; |
| 15 | 15 | |
| 16 | -use WebHemi\Data\Query\QueryInterface; |
|
| 17 | -use WebHemi\Data\Entity\EntitySet; |
|
| 18 | 16 | use WebHemi\Data\Entity\ApplicationEntity; |
| 17 | +use WebHemi\Data\Entity\EntitySet; |
|
| 18 | +use WebHemi\Data\Query\QueryInterface; |
|
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | 21 | * Class ApplicationStorage. |
@@ -15,8 +15,8 @@ |
||
| 15 | 15 | |
| 16 | 16 | use WebHemi\Data\Entity\EntitySet; |
| 17 | 17 | use WebHemi\Data\Entity\FilesystemCategoryEntity; |
| 18 | -use WebHemi\Data\Entity\FilesystemDirectoryEntity; |
|
| 19 | 18 | use WebHemi\Data\Entity\FilesystemDirectoryDataEntity; |
| 19 | +use WebHemi\Data\Entity\FilesystemDirectoryEntity; |
|
| 20 | 20 | use WebHemi\Data\Entity\FilesystemDocumentEntity; |
| 21 | 21 | use WebHemi\Data\Entity\FilesystemEntity; |
| 22 | 22 | use WebHemi\Data\Entity\FilesystemMetaEntity; |
@@ -105,7 +105,7 @@ |
||
| 105 | 105 | // Create new instance. |
| 106 | 106 | $className = $this->serviceLibrary[$identifier][self::SERVICE_CLASS]; |
| 107 | 107 | $reflectionClass = new ReflectionClass($className); |
| 108 | - $serviceInstance = $reflectionClass->newInstanceArgs($argumentList); |
|
| 108 | + $serviceInstance = $reflectionClass->newInstanceArgs($argumentList); |
|
| 109 | 109 | |
| 110 | 110 | // Perform post init method calls. |
| 111 | 111 | foreach ($this->serviceLibrary[$identifier][self::SERVICE_METHOD_CALL] as $methodCallList) { |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | foreach ($arrayData as $key => $value) { |
| 46 | 46 | if (!array_key_exists($key, $this->container)) { |
| 47 | 47 | throw new InvalidArgumentException( |
| 48 | - sprintf('"%s" is not defined in ' . get_called_class(), $key), |
|
| 48 | + sprintf('"%s" is not defined in '.get_called_class(), $key), |
|
| 49 | 49 | 1000 |
| 50 | 50 | ); |
| 51 | 51 | } |