@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | public function get($key) |
| 23 | 23 | { |
| 24 | 24 | if (!isset($this->values[$key])) { |
| 25 | - throw new \OutOfBoundsException('Invalid key "' . $key . '"'); |
|
| 25 | + throw new \OutOfBoundsException('Invalid key "'.$key.'"'); |
|
| 26 | 26 | } |
| 27 | 27 | return $this->values[$key]; |
| 28 | 28 | } |
@@ -45,11 +45,11 @@ discard block |
||
| 45 | 45 | |
| 46 | 46 | public function __call($method, $params) |
| 47 | 47 | { |
| 48 | - $type = substr($method, 0, 3); |
|
| 48 | + $type = substr($method, 0, 3); |
|
| 49 | 49 | |
| 50 | 50 | if ('get' == $type || 'set' == $type) { |
| 51 | - $filter = function ($match) { |
|
| 52 | - return '_' . strtolower($match[0]); |
|
| 51 | + $filter = function($match) { |
|
| 52 | + return '_'.strtolower($match[0]); |
|
| 53 | 53 | }; |
| 54 | 54 | $key = lcfirst(substr($method, 3)); |
| 55 | 55 | $key = preg_replace_callback('~([A-Z])~', $filter, $key); |
@@ -57,6 +57,6 @@ discard block |
||
| 57 | 57 | return 'get' == $type ? $this->get($key) : $this->set($key, (isset($params[0]) ? $params[0] : null)); |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - throw new \BadMethodCallException('Unknown method: ' . $method); |
|
| 60 | + throw new \BadMethodCallException('Unknown method: '.$method); |
|
| 61 | 61 | } |
| 62 | 62 | } |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | public function closureToDatabase() |
| 72 | 72 | { |
| 73 | 73 | return ' |
| 74 | - /* CODE FROM: ' . __METHOD__ . ' */ |
|
| 74 | + /* CODE FROM: ' . __METHOD__.' */ |
|
| 75 | 75 | if (!$value instanceOf \DateTime) return null; |
| 76 | 76 | $return = array( |
| 77 | 77 | "date" => new \MongoDate($value->getTimestamp()), |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | public function closureToPhp() |
| 114 | 114 | { |
| 115 | 115 | return ' |
| 116 | - /* CODE FROM: ' . __METHOD__ . ' */ |
|
| 116 | + /* CODE FROM: ' . __METHOD__.' */ |
|
| 117 | 117 | if (!is_array($value) |
| 118 | 118 | || !isset($value["date"]) |
| 119 | 119 | || !$value["date"] instanceOf \MongoDate |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | |
| 37 | 37 | public static function load($directory) |
| 38 | 38 | { |
| 39 | - $directory = rtrim($directory, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; |
|
| 39 | + $directory = rtrim($directory, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR; |
|
| 40 | 40 | $env = getenv('APPLICATION_ENV') ?: 'production'; |
| 41 | 41 | $pattern = sprintf('%s{,*.}{config,%s}.php', $directory, $env); |
| 42 | 42 | $config = array(); |
@@ -77,7 +77,7 @@ |
||
| 77 | 77 | } |
| 78 | 78 | $resolver = $e->getApplication()->getServiceManager()->get('ViewResolver'); |
| 79 | 79 | |
| 80 | - $template = $viewModel->getTemplate() . '.ajax'; |
|
| 80 | + $template = $viewModel->getTemplate().'.ajax'; |
|
| 81 | 81 | if ($resolver->resolve($template)) { |
| 82 | 82 | $viewModel->setTemplate($template); |
| 83 | 83 | } else { |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | if (!empty($capture)) { |
| 52 | 52 | if ($viewModel->isAppend()) { |
| 53 | 53 | $oldResult = $viewModel->{$capture}; |
| 54 | - $viewModel->setVariable($capture, $oldResult . $result); |
|
| 54 | + $viewModel->setVariable($capture, $oldResult.$result); |
|
| 55 | 55 | } else { |
| 56 | 56 | $viewModel->setVariable($capture, $result); |
| 57 | 57 | } |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | $target->__invoke($data); |
| 150 | 150 | $className = get_class($this->entity); |
| 151 | 151 | // @TODO, have to be abstract |
| 152 | - $snapShotMetaClassName = '\\' . $className . 'SnapshotMeta'; |
|
| 152 | + $snapShotMetaClassName = '\\'.$className.'SnapshotMeta'; |
|
| 153 | 153 | $meta = new $snapShotMetaClassName; |
| 154 | 154 | $meta->setEntity($target); |
| 155 | 155 | $meta->setSourceId($this->entity->id); |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | if (empty($dataHead) || empty($targetClass)) { |
| 178 | 178 | return null; |
| 179 | 179 | } |
| 180 | - $repositorySnapshotMeta = $this->getRepositories()->getRepository($targetClass . "Meta"); |
|
| 180 | + $repositorySnapshotMeta = $this->getRepositories()->getRepository($targetClass."Meta"); |
|
| 181 | 181 | $snapshot = $repositorySnapshotMeta->findSnapshot($this->entity); |
| 182 | 182 | // an snapshot has to be so simple that there is no need for a special hydrator |
| 183 | 183 | $hydrator = new EntityHydrator(); |
@@ -247,8 +247,8 @@ discard block |
||
| 247 | 247 | // the snapshotgenerator is a service defined by the name of the entity |
| 248 | 248 | // this is the highest means, all subsequent means just add what is not set |
| 249 | 249 | $className = get_class($this->entity); |
| 250 | - if ($serviceLocator->has('snapshotgenerator' . $className)) { |
|
| 251 | - $generator = $this->serviceLocator->get('snapshotgenerator' . $className); |
|
| 250 | + if ($serviceLocator->has('snapshotgenerator'.$className)) { |
|
| 251 | + $generator = $this->serviceLocator->get('snapshotgenerator'.$className); |
|
| 252 | 252 | if (is_array($generator)) { |
| 253 | 253 | $this->options = ArrayUtils::merge($generator, $this->options); |
| 254 | 254 | $generator = null; |
@@ -348,13 +348,13 @@ discard block |
||
| 348 | 348 | } |
| 349 | 349 | } else { |
| 350 | 350 | if ($array1[$key] != $array2[$key]) { |
| 351 | - $result[$key] = array( $array1[$key], $array2[$key]); |
|
| 351 | + $result[$key] = array($array1[$key], $array2[$key]); |
|
| 352 | 352 | } |
| 353 | 353 | } |
| 354 | 354 | if (!empty($subResult)) { |
| 355 | 355 | foreach ($subResult as $subKey => $subValue) { |
| 356 | 356 | if (!empty($subKey) && is_string($subKey)) { |
| 357 | - $result[$key . '.' . $subKey] = $subValue; |
|
| 357 | + $result[$key.'.'.$subKey] = $subValue; |
|
| 358 | 358 | } |
| 359 | 359 | } |
| 360 | 360 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | public function indexAction() |
| 29 | 29 | { |
| 30 | 30 | $view = $this->params('view'); |
| 31 | - $view = 'content/' . $view; |
|
| 31 | + $view = 'content/'.$view; |
|
| 32 | 32 | |
| 33 | 33 | $viewModel = new ViewModel(); |
| 34 | 34 | $viewModel->setTemplate($view); |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | throw new \InvalidArgumentException( |
| 40 | 40 | sprintf( |
| 41 | 41 | 'Expect an array or an instance of \Traversable, but received %s', |
| 42 | - is_object($variables) ? 'instance of ' . get_class($variables) : 'skalar' |
|
| 42 | + is_object($variables) ? 'instance of '.get_class($variables) : 'skalar' |
|
| 43 | 43 | ) |
| 44 | 44 | ); |
| 45 | 45 | } |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | throw new \InvalidArgumentException( |
| 70 | 70 | sprintf( |
| 71 | 71 | 'Expect an array or an instance of \Traversable, but received %s', |
| 72 | - is_object($callbacks) ? 'instance of ' . get_class($callbacks) : 'skalar' |
|
| 72 | + is_object($callbacks) ? 'instance of '.get_class($callbacks) : 'skalar' |
|
| 73 | 73 | ) |
| 74 | 74 | ); |
| 75 | 75 | } |
@@ -141,6 +141,6 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | protected function getNamePattern($name) |
| 143 | 143 | { |
| 144 | - return '~##' . preg_quote($name) . '##~is'; |
|
| 144 | + return '~##'.preg_quote($name).'##~is'; |
|
| 145 | 145 | } |
| 146 | 146 | } |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | throw new \InvalidArgumentException( |
| 27 | 27 | sprintf( |
| 28 | 28 | 'Expected $options to be an array or \Traversable, but received %s', |
| 29 | - (is_object($options) ? 'instance of ' . get_class($options) : 'skalar') |
|
| 29 | + (is_object($options) ? 'instance of '.get_class($options) : 'skalar') |
|
| 30 | 30 | ) |
| 31 | 31 | ); |
| 32 | 32 | } |