@@ -292,7 +292,7 @@ |
||
292 | 292 | $routeParams = $this->request->get('_route_params', []); |
293 | 293 | if (empty($this->idValue)) { |
294 | 294 | if (array_key_exists($this->idField, $routeParams)) { |
295 | - $this->idValue = (int) !empty($routeParams[$this->idField]) ? $routeParams[$this->idField] : 0; |
|
295 | + $this->idValue = (int)!empty($routeParams[$this->idField]) ? $routeParams[$this->idField] : 0; |
|
296 | 296 | } |
297 | 297 | if (0 === $this->idValue) { |
298 | 298 | $this->idValue = $this->request->query->getInt($this->idField, 0); |
@@ -34,7 +34,7 @@ |
||
34 | 34 | parent::__construct($kernel); |
35 | 35 | |
36 | 36 | $this->setName('Zikula'); |
37 | - $this->setVersion(ZikulaKernel::VERSION.' - '.$kernel->getName().'/'.$kernel->getEnvironment().($kernel->isDebug() ? '/debug' : '')); |
|
37 | + $this->setVersion(ZikulaKernel::VERSION . ' - ' . $kernel->getName() . '/' . $kernel->getEnvironment() . ($kernel->isDebug() ? '/debug' : '')); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | protected function registerCommands() |