@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | * @license MIT |
| 13 | 13 | */ |
| 14 | 14 | |
| 15 | -$doctrineConfig = include __DIR__ . '/doctrine.config.php'; |
|
| 15 | +$doctrineConfig = include __DIR__.'/doctrine.config.php'; |
|
| 16 | 16 | |
| 17 | 17 | |
| 18 | 18 | return array( |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | 'doctrine' => $doctrineConfig, |
| 21 | 21 | |
| 22 | 22 | 'options' => [ |
| 23 | - 'Core/MailServiceOptions' => [ 'class' => '\Core\Options\MailServiceOptions' ], |
|
| 23 | + 'Core/MailServiceOptions' => ['class' => '\Core\Options\MailServiceOptions'], |
|
| 24 | 24 | ], |
| 25 | 25 | |
| 26 | 26 | 'Core' => array( |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | 'name' => 'stream', |
| 41 | 41 | 'priority' => 1000, |
| 42 | 42 | 'options' => array( |
| 43 | - 'stream' => __DIR__ .'/../../../log/yawik.log', |
|
| 43 | + 'stream' => __DIR__.'/../../../log/yawik.log', |
|
| 44 | 44 | ), |
| 45 | 45 | ), |
| 46 | 46 | ), |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | 'name' => 'stream', |
| 52 | 52 | 'priority' => 1000, |
| 53 | 53 | 'options' => array( |
| 54 | - 'stream' => __DIR__ .'/../../../log/mails.log', |
|
| 54 | + 'stream' => __DIR__.'/../../../log/mails.log', |
|
| 55 | 55 | ), |
| 56 | 56 | ), |
| 57 | 57 | ), |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | 'ErrorLogger' => array( |
| 60 | 60 | 'service' => 'Core/ErrorLogger', |
| 61 | 61 | 'config' => array( |
| 62 | - 'stream' => __DIR__ . '/../../../log/error.log', |
|
| 62 | + 'stream' => __DIR__.'/../../../log/error.log', |
|
| 63 | 63 | 'log_errors' => true, |
| 64 | 64 | 'log_exceptions' => true, |
| 65 | 65 | ), |
@@ -221,17 +221,17 @@ discard block |
||
| 221 | 221 | 'translation_file_patterns' => array( |
| 222 | 222 | [ |
| 223 | 223 | 'type' => 'gettext', |
| 224 | - 'base_dir' => __DIR__ . '/../language', |
|
| 224 | + 'base_dir' => __DIR__.'/../language', |
|
| 225 | 225 | 'pattern' => '%s.mo', |
| 226 | 226 | ], |
| 227 | 227 | [ |
| 228 | 228 | 'type' => 'phparray', |
| 229 | - 'base_dir' => __DIR__ . '/../language', |
|
| 229 | + 'base_dir' => __DIR__.'/../language', |
|
| 230 | 230 | 'pattern' => 'Zend_Validate.%s.php', |
| 231 | 231 | ], |
| 232 | 232 | [ |
| 233 | 233 | 'type' => 'phparray', |
| 234 | - 'base_dir' => __DIR__ . '/../language', |
|
| 234 | + 'base_dir' => __DIR__.'/../language', |
|
| 235 | 235 | 'pattern' => 'Zend_Captcha.%s.php', |
| 236 | 236 | ] |
| 237 | 237 | ), |
@@ -300,29 +300,29 @@ discard block |
||
| 300 | 300 | 'exception_template' => 'error/index', |
| 301 | 301 | // Map template to files. Speeds up the lookup through the template stack. |
| 302 | 302 | 'template_map' => array( |
| 303 | - 'noscript-notice' => __DIR__ . '/../view/layout/_noscript-notice.phtml', |
|
| 304 | - 'layout/layout' => __DIR__ . '/../view/layout/layout.phtml', |
|
| 305 | - 'error/404' => __DIR__ . '/../view/error/404.phtml', |
|
| 306 | - 'error/403' => __DIR__ . '/../view/error/403.phtml', |
|
| 307 | - 'error/index' => __DIR__ . '/../view/error/index.phtml', |
|
| 308 | - 'main-navigation' => __DIR__ . '/../view/partial/main-navigation.phtml', |
|
| 309 | - 'pagination-control' => __DIR__ . '/../view/partial/pagination-control.phtml', |
|
| 310 | - 'core/loading-popup' => __DIR__ . '/../view/partial/loading-popup.phtml', |
|
| 311 | - 'core/notifications' => __DIR__ . '/../view/partial/notifications.phtml', |
|
| 312 | - 'form/core/buttons' => __DIR__ . '/../view/form/buttons.phtml', |
|
| 313 | - 'core/social-buttons' => __DIR__ . '/../view/partial/social-buttons.phtml', |
|
| 314 | - 'form/core/privacy' => __DIR__ . '/../view/form/privacy.phtml', |
|
| 315 | - 'core/form/permissions-fieldset' => __DIR__ . '/../view/form/permissions-fieldset.phtml', |
|
| 316 | - 'core/form/permissions-collection' => __DIR__ . '/../view/form/permissions-collection.phtml', |
|
| 317 | - 'core/form/container-view' => __DIR__ . '/../view/form/container.view.phtml', |
|
| 318 | - 'mail/header' => __DIR__ . '/../view/mail/header.phtml', |
|
| 319 | - 'mail/footer' => __DIR__ . '/../view/mail/footer.phtml', |
|
| 320 | - 'mail/footer.en' => __DIR__ . '/../view/mail/footer.en.phtml', |
|
| 303 | + 'noscript-notice' => __DIR__.'/../view/layout/_noscript-notice.phtml', |
|
| 304 | + 'layout/layout' => __DIR__.'/../view/layout/layout.phtml', |
|
| 305 | + 'error/404' => __DIR__.'/../view/error/404.phtml', |
|
| 306 | + 'error/403' => __DIR__.'/../view/error/403.phtml', |
|
| 307 | + 'error/index' => __DIR__.'/../view/error/index.phtml', |
|
| 308 | + 'main-navigation' => __DIR__.'/../view/partial/main-navigation.phtml', |
|
| 309 | + 'pagination-control' => __DIR__.'/../view/partial/pagination-control.phtml', |
|
| 310 | + 'core/loading-popup' => __DIR__.'/../view/partial/loading-popup.phtml', |
|
| 311 | + 'core/notifications' => __DIR__.'/../view/partial/notifications.phtml', |
|
| 312 | + 'form/core/buttons' => __DIR__.'/../view/form/buttons.phtml', |
|
| 313 | + 'core/social-buttons' => __DIR__.'/../view/partial/social-buttons.phtml', |
|
| 314 | + 'form/core/privacy' => __DIR__.'/../view/form/privacy.phtml', |
|
| 315 | + 'core/form/permissions-fieldset' => __DIR__.'/../view/form/permissions-fieldset.phtml', |
|
| 316 | + 'core/form/permissions-collection' => __DIR__.'/../view/form/permissions-collection.phtml', |
|
| 317 | + 'core/form/container-view' => __DIR__.'/../view/form/container.view.phtml', |
|
| 318 | + 'mail/header' => __DIR__.'/../view/mail/header.phtml', |
|
| 319 | + 'mail/footer' => __DIR__.'/../view/mail/footer.phtml', |
|
| 320 | + 'mail/footer.en' => __DIR__.'/../view/mail/footer.en.phtml', |
|
| 321 | 321 | //'startpage' => __DIR__ . '/../view/layout/startpage.phtml', |
| 322 | 322 | ), |
| 323 | 323 | // Where to look for view templates not mapped above |
| 324 | 324 | 'template_path_stack' => array( |
| 325 | - __DIR__ . '/../view', |
|
| 325 | + __DIR__.'/../view', |
|
| 326 | 326 | ), |
| 327 | 327 | ), |
| 328 | 328 | 'view_helpers' => array( |