Completed
Push — develop ( b4fd40...785f8f )
by greg
03:10
created
src/PlaygroundCore/Service/Factory/ImageFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 class ImageFactory implements FactoryInterface
9 9
 {
10 10
     /**
11
-    * @param ServiceLocatorInterface $locator
12
-    * @return \PlaygroundCore\Service\Image
13
-    */
11
+     * @param ServiceLocatorInterface $locator
12
+     * @return \PlaygroundCore\Service\Image
13
+     */
14 14
     public function createService(ServiceLocatorInterface $locator)
15 15
     {
16 16
         $service = new Image($locator);
Please login to merge, or discard this patch.
src/PlaygroundCore/Service/Factory/CronFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 class CronFactory implements FactoryInterface
9 9
 {
10 10
     /**
11
-    * @param ServiceLocatorInterface $locator
12
-    * @return \PlaygroundCore\Service\Cron
13
-    */
11
+     * @param ServiceLocatorInterface $locator
12
+     * @return \PlaygroundCore\Service\Cron
13
+     */
14 14
     public function createService(ServiceLocatorInterface $locator)
15 15
     {
16 16
         $service = new Cron($locator);
Please login to merge, or discard this patch.
config/module.config.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -138,19 +138,19 @@  discard block
 block discarded – undo
138 138
                             ),
139 139
                         ),
140 140
                     ),
141
-		            // Give the possibility to call Cron from browser
142
-		            'cron' => array(
143
-		                'type' => 'Literal',
144
-		                'options' => array(
145
-		                    'route' => 'cron',
146
-		                    'defaults' => array(
147
-		                        'controller' => 'playgroundcore_console',
148
-		                        'action' => 'cron'
149
-		                    ),
150
-		                ),
151
-		            ),
152
-        		),
153
-        	),
141
+                    // Give the possibility to call Cron from browser
142
+                    'cron' => array(
143
+                        'type' => 'Literal',
144
+                        'options' => array(
145
+                            'route' => 'cron',
146
+                            'defaults' => array(
147
+                                'controller' => 'playgroundcore_console',
148
+                                'action' => 'cron'
149
+                            ),
150
+                        ),
151
+                    ),
152
+                ),
153
+            ),
154 154
             'admin' => array(
155 155
                 'type' => 'Literal',
156 156
                 'priority' => -1000,
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
                             'list' => array(
448 448
                                 'type' => 'Segment',
449 449
                                 'options' => array(
450
-                                     'route' => '/list',
450
+                                        'route' => '/list',
451 451
                                     'defaults' => array(
452 452
                                         'controller' => 'PlaygroundCore\Controller\Admin\WebsiteAdmin',
453 453
                                         'action'     => 'list',
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
                             'edit-active' => array(
459 459
                                 'type' => 'Segment',
460 460
                                 'options' => array(
461
-                                     'route' => '/edit-active/[:websiteId]',
461
+                                        'route' => '/edit-active/[:websiteId]',
462 462
                                     'defaults' => array(
463 463
                                         'controller' => 'PlaygroundCore\Controller\Admin\WebsiteAdmin',
464 464
                                         'action'     => 'editactive',
@@ -565,6 +565,6 @@  discard block
 block discarded – undo
565 565
         'invokables' => array(
566 566
             'NotInBlacklist' => 'PlaygroundCore\Validator\Blacklist',
567 567
             'InMailDomainList' => 'PlaygroundCore\Validator\MailDomain',
568
-         ),
568
+            ),
569 569
     ),
570 570
 );
Please login to merge, or discard this patch.