@@ -73,9 +73,9 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | foreach (['useTitle' => ['enableTitle', 'disableTitle'], 'useOverlay' => ['enableOverlay', 'disableOverlay']] as $parameter => $commands) { |
| 75 | 75 | if ($config[$parameter] === TRUE) { |
| 76 | - $control->addSetup('$service->' . $commands[0] . '(?)', [$config[$parameter]]); |
|
| 76 | + $control->addSetup('$service->'.$commands[0].'(?)', [$config[$parameter]]); |
|
| 77 | 77 | } else { |
| 78 | - $control->addSetup('$service->' . $commands[1] . '(?)', [$config[$parameter]]); |
|
| 78 | + $control->addSetup('$service->'.$commands[1].'(?)', [$config[$parameter]]); |
|
| 79 | 79 | } |
| 80 | 80 | } |
| 81 | 81 | |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | ->setClass(Events\OnResponseHandler::class); |
| 89 | 89 | |
| 90 | 90 | $application = $builder->getDefinition('application'); |
| 91 | - $application->addSetup('$service->onResponse[] = ?', ['@' . $this->prefix('onResponseHandler')]); |
|
| 91 | + $application->addSetup('$service->onResponse[] = ?', ['@'.$this->prefix('onResponseHandler')]); |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | /** |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | // If template was not defined before... |
| 158 | 158 | if ($this->template->getFile() === NULL) { |
| 159 | 159 | // ...try to get base component template file |
| 160 | - $templateFile = !empty($this->templateFile) ? $this->templateFile : __DIR__ . DIRECTORY_SEPARATOR . 'template' . DIRECTORY_SEPARATOR . 'default' . DIRECTORY_SEPARATOR . 'default.latte'; |
|
| 160 | + $templateFile = !empty($this->templateFile) ? $this->templateFile : __DIR__.DIRECTORY_SEPARATOR.'template'.DIRECTORY_SEPARATOR.'default'.DIRECTORY_SEPARATOR.'default.latte'; |
|
| 161 | 161 | $this->template->setFile($templateFile); |
| 162 | 162 | } |
| 163 | 163 | } |
@@ -199,8 +199,8 @@ discard block |
||
| 199 | 199 | $templateName = preg_replace('/.latte/', '', $templateFile); |
| 200 | 200 | |
| 201 | 201 | // ...check if extension template is used |
| 202 | - if (is_file($dir . DIRECTORY_SEPARATOR . 'template' . DIRECTORY_SEPARATOR . $templateName . DIRECTORY_SEPARATOR . 'default.latte')) { |
|
| 203 | - $templateFile = $dir . DIRECTORY_SEPARATOR . 'template' . DIRECTORY_SEPARATOR . $templateName . DIRECTORY_SEPARATOR . 'default.latte'; |
|
| 202 | + if (is_file($dir.DIRECTORY_SEPARATOR.'template'.DIRECTORY_SEPARATOR.$templateName.DIRECTORY_SEPARATOR.'default.latte')) { |
|
| 203 | + $templateFile = $dir.DIRECTORY_SEPARATOR.'template'.DIRECTORY_SEPARATOR.$templateName.DIRECTORY_SEPARATOR.'default.latte'; |
|
| 204 | 204 | |
| 205 | 205 | } else { |
| 206 | 206 | // ...if not throw exception |