@@ -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) { |
@@ -22,13 +22,13 @@ |
||
22 | 22 | */ |
23 | 23 | class ApplicationStorage extends AbstractStorage |
24 | 24 | { |
25 | - /** |
|
26 | - * Returns every Application entity. |
|
27 | - * |
|
28 | - * @param int $limit |
|
29 | - * @param int $offset |
|
30 | - * @return EntitySet |
|
31 | - */ |
|
25 | + /** |
|
26 | + * Returns every Application entity. |
|
27 | + * |
|
28 | + * @param int $limit |
|
29 | + * @param int $offset |
|
30 | + * @return EntitySet |
|
31 | + */ |
|
32 | 32 | public function getApplicationList( |
33 | 33 | int $limit = QueryInterface::MAX_ROW_LIMIT, |
34 | 34 | int $offset = 0 |
@@ -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 | } |