Completed
Push — develop ( 574915...8e7d17 )
by greg
35s
created
config/module.config.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
                             'list' => array(
453 453
                                 'type' => 'Segment',
454 454
                                 'options' => array(
455
-                                     'route' => '/list',
455
+                                        'route' => '/list',
456 456
                                     'defaults' => array(
457 457
                                         'controller' => 'playgroundcore_admin_website',
458 458
                                         'action'     => 'list',
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
                             'edit-active' => array(
464 464
                                 'type' => 'Segment',
465 465
                                 'options' => array(
466
-                                     'route' => '/edit-active/[:websiteId]',
466
+                                        'route' => '/edit-active/[:websiteId]',
467 467
                                     'defaults' => array(
468 468
                                         'controller' => 'playgroundcore_admin_website',
469 469
                                         'action'     => 'editactive',
@@ -571,6 +571,6 @@  discard block
 block discarded – undo
571 571
         'invokables' => array(
572 572
             'NotInBlacklist' => 'PlaygroundCore\Validator\Blacklist',
573 573
             'InMailDomainList' => 'PlaygroundCore\Validator\MailDomain',
574
-         ),
574
+            ),
575 575
     ),
576 576
 );
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
             'playgroundcore_entity' => array(
36 36
                 'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
37 37
                 'cache' => 'array',
38
-                'paths' => __DIR__ . '/../src/Entity'
38
+                'paths' => __DIR__.'/../src/Entity'
39 39
             ),
40 40
 
41 41
             'orm_default' => array(
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         'rule_providers' => array(
78 78
             'BjyAuthorize\Provider\Rule\Config' => array(
79 79
                 'allow' => array(
80
-                    array(array('admin'), 'core',           array('dashboard', 'edit')),
80
+                    array(array('admin'), 'core', array('dashboard', 'edit')),
81 81
                 ),
82 82
             ),
83 83
         ),
@@ -535,25 +535,25 @@  discard block
 block discarded – undo
535 535
         'translation_file_patterns' => array(
536 536
             array(
537 537
                 'type'         => 'phpArray',
538
-                'base_dir'     => __DIR__ . '/../language',
538
+                'base_dir'     => __DIR__.'/../language',
539 539
                 'pattern'      => '%s.php',
540 540
                 'text_domain'  => 'playgroundcore'
541 541
             ),
542 542
             array(
543 543
                 'type'         => 'phpArray',
544
-                'base_dir'     => __DIR__ . '/../../../../language',
544
+                'base_dir'     => __DIR__.'/../../../../language',
545 545
                 'pattern'      => '%s.php',
546 546
                 'text_domain'  => 'playgroundcore'
547 547
             ),
548 548
             array(
549 549
                 'type'         => 'phpArray',
550
-                'base_dir'     => __DIR__ . '/../language',
550
+                'base_dir'     => __DIR__.'/../language',
551 551
                 'pattern'      => 'routes_%s.php',
552 552
                 'text_domain'  => 'routes'
553 553
             ),
554 554
             array(
555 555
                 'type'         => 'phpArray',
556
-                'base_dir'     => __DIR__ . '/../../../../language',
556
+                'base_dir'     => __DIR__.'/../../../../language',
557 557
                 'pattern'      => 'routes_%s.php',
558 558
                 'text_domain'  => 'routes'
559 559
             ),
@@ -562,8 +562,8 @@  discard block
 block discarded – undo
562 562
 
563 563
     'view_manager' => array(
564 564
         'template_path_stack' => array(
565
-            __DIR__ . '/../view/admin',
566
-            __DIR__ . '/../view/frontend',
565
+            __DIR__.'/../view/admin',
566
+            __DIR__.'/../view/frontend',
567 567
         ),
568 568
     ),
569 569
 
Please login to merge, or discard this patch.