Completed
Push — develop ( 346ce9...ffa440 )
by
unknown
31:53 queued 20:25
created
module/Core/config/module.config.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * YAWIK
4
- * Configuration file of the Core module
5
- *
6
- * This file intents to provide the configuration for all other modules
7
- * as well (convention over configuration).
8
- * Having said that, you may always overwrite or extend the configuration
9
- * in your own modules configuration file(s) (or via the config autoloading).
10
- *
11
- * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de)
12
- * @license   MIT
13
- */
3
+         * YAWIK
4
+         * Configuration file of the Core module
5
+         *
6
+         * This file intents to provide the configuration for all other modules
7
+         * as well (convention over configuration).
8
+         * Having said that, you may always overwrite or extend the configuration
9
+         * in your own modules configuration file(s) (or via the config autoloading).
10
+         *
11
+         * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de)
12
+         * @license   MIT
13
+         */
14 14
 
15 15
 $doctrineConfig = include __DIR__ . '/doctrine.config.php';
16 16
 
@@ -32,24 +32,24 @@  discard block
 block discarded – undo
32 32
     'log' => array(
33 33
         'Core/Log' => array(
34 34
             'writers' => array(
35
-                 array(
36
-                     'name' => 'stream',
35
+                    array(
36
+                        'name' => 'stream',
37 37
                     'priority' => 1000,
38 38
                     'options' => array(
39
-                         'stream' => __DIR__ .'/../../../log/yawik.log',
39
+                            'stream' => __DIR__ .'/../../../log/yawik.log',
40
+                    ),
40 41
                     ),
41
-                 ),
42 42
             ),
43 43
         ),
44 44
         'Log/Core/Mail' => array(
45 45
             'writers' => array(
46
-                 array(
47
-                     'name' => 'stream',
46
+                    array(
47
+                        'name' => 'stream',
48 48
                     'priority' => 1000,
49 49
                     'options' => array(
50
-                         'stream' => __DIR__ .'/../../../log/mails.log',
50
+                            'stream' => __DIR__ .'/../../../log/mails.log',
51
+                    ),
51 52
                     ),
52
-                 ),
53 53
             ),
54 54
         ),
55 55
         'ErrorLogger' => array(
@@ -197,11 +197,11 @@  discard block
 block discarded – undo
197 197
     // Defines the Core/Navigation.
198 198
     'navigation' => array(
199 199
         'default' => array(
200
-             'home' => array(
201
-                 'label' => /*@translate*/ 'Home',
202
-                 'route' => 'lang',
203
-                 'visible' => false
204
-             ),
200
+                'home' => array(
201
+                    'label' => /*@translate*/ 'Home',
202
+                    'route' => 'lang',
203
+                    'visible' => false
204
+                ),
205 205
         ),
206 206
     ),
207 207
     // Configuration of the controller service manager (Which loads controllers)
Please login to merge, or discard this patch.
module/Core/src/Core/Factory/OptionsAbstractFactory.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * YAWIK
4
- *
5
- * @filesource
6
- * @license MIT
7
- * @copyright  2013 - 2015 Cross Solution <http://cross-solution.de>
8
- */
3
+     * YAWIK
4
+     *
5
+     * @filesource
6
+     * @license MIT
7
+     * @copyright  2013 - 2015 Cross Solution <http://cross-solution.de>
8
+     */
9 9
   
10 10
 /** */
11 11
 namespace Organizations\Repository\Event;
Please login to merge, or discard this patch.