Completed
Push — develop ( 3062c0...09456b )
by Mathias
07:45
created
module/Core/config/module.config.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -41,24 +41,24 @@  discard block
 block discarded – undo
41 41
     'log' => array(
42 42
         'Core/Log' => array(
43 43
             'writers' => array(
44
-                 array(
45
-                     'name' => 'stream',
44
+                    array(
45
+                        'name' => 'stream',
46 46
                     'priority' => 1000,
47 47
                     'options' => array(
48
-                         'stream' => __DIR__ .'/../../../log/yawik.log',
48
+                            'stream' => __DIR__ .'/../../../log/yawik.log',
49
+                    ),
49 50
                     ),
50
-                 ),
51 51
             ),
52 52
         ),
53 53
         'Log/Core/Mail' => array(
54 54
             'writers' => array(
55
-                 array(
56
-                     'name' => 'stream',
55
+                    array(
56
+                        'name' => 'stream',
57 57
                     'priority' => 1000,
58 58
                     'options' => array(
59
-                         'stream' => __DIR__ .'/../../../log/mails.log',
59
+                            'stream' => __DIR__ .'/../../../log/mails.log',
60
+                    ),
60 61
                     ),
61
-                 ),
62 62
             ),
63 63
         ),
64 64
     ),
@@ -289,12 +289,12 @@  discard block
 block discarded – undo
289 289
     ),
290 290
     // Configuration of the controller service manager (Which loads controllers)
291 291
     'controllers' => array(
292
-	    'factories' => [
293
-		    'Core/Index'   => LazyControllerFactory::class,
292
+        'factories' => [
293
+            'Core/Index'   => LazyControllerFactory::class,
294 294
             'Core/Admin'   => AdminControllerFactory::class,
295
-		    'Core/File'    => LazyControllerFactory::class,
295
+            'Core/File'    => LazyControllerFactory::class,
296 296
             'Core/Content' => LazyControllerFactory::class,
297
-	    ],
297
+        ],
298 298
     ),
299 299
     // Configuration of the controller plugin service manager
300 300
     'controller_plugins' => array(
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
             'paginatorservice' => 'Core/PaginatorService',
325 325
             'paginationParams' => 'Core/PaginationParams',
326 326
             'searchform'       => 'Core/SearchForm',
327
-	        'notification'     => 'Notification',
327
+            'notification'     => 'Notification',
328 328
         )
329 329
     ),
330 330
     // Configure the view service manager
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
         ),
423 423
         'aliases' => [
424 424
             'snippet' => \Core\View\Helper\Snippet::class,
425
-	        'ajaxUrl' => \Core\View\Helper\AjaxUrl::class,
425
+            'ajaxUrl' => \Core\View\Helper\AjaxUrl::class,
426 426
             'proxy' => \Core\View\Helper\Proxy::class,
427 427
             'form_element' => 'formElement',
428 428
         ],
@@ -520,17 +520,17 @@  discard block
 block discarded – undo
520 520
         ],
521 521
 
522 522
         'Core/Ajax/Events' => [
523
-	        'service' => 'Core/EventManager',
524
-	        'event'   => \Core\Listener\Events\AjaxEvent::class,
523
+            'service' => 'Core/EventManager',
524
+            'event'   => \Core\Listener\Events\AjaxEvent::class,
525 525
         ],
526 526
 	    
527
-	    'Core/File/Events' => [
528
-		    'service' => 'Core/EventManager',
529
-		    'event' => \Core\Listener\Events\FileEvent::class,
527
+        'Core/File/Events' => [
528
+            'service' => 'Core/EventManager',
529
+            'event' => \Core\Listener\Events\FileEvent::class,
530 530
             'listeners' => [
531 531
                 \Core\Listener\DeleteImageSetListener::class => [\Core\Listener\Events\FileEvent::EVENT_DELETE, -1000],
532 532
             ],
533
-	    ]
533
+        ]
534 534
     ],
535 535
     
536 536
 );
Please login to merge, or discard this patch.