Completed
Push — master ( 52d4a2...e87f5a )
by Rafał
02:57
created
Tests/DependencyInjection/SWPMultiTenancyExtensionTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
         );
47 47
 
48 48
         $this->assertEquals(
49
-           array('routes1', 'routes2'),
50
-           $container->getParameter('swp_multi_tenancy.persistence.phpcr.route_basepaths')
51
-       );
49
+            array('routes1', 'routes2'),
50
+            $container->getParameter('swp_multi_tenancy.persistence.phpcr.route_basepaths')
51
+        );
52 52
 
53 53
         $this->assertEquals(
54 54
             array('routes1', 'routes2', 'content'),
Please login to merge, or discard this patch.
Tests/Command/CreateTenantCommandTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
     }
147 147
 
148 148
     /**
149
-     * @param $input
149
+     * @param string $input
150 150
      *
151 151
      * @return resource
152 152
      */
Please login to merge, or discard this patch.
Command/CreateTenantCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
             $argument = $this->getHelper('dialog')->askAndValidate(
113 113
                 $output,
114 114
                 '<question>Please enter '.$name.':</question>',
115
-                function ($argument) use ($name) {
115
+                function($argument) use ($name) {
116 116
                     if (empty($argument)) {
117 117
                         throw new \RuntimeException('The '.$name.' can not be empty');
118 118
                     }
Please login to merge, or discard this patch.