Completed
Pull Request — master (#561)
by Carsten
06:20
created
module/Auth/test/AuthTest/Listener/TokenListenerTest.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -45,22 +45,22 @@
 block discarded – undo
45 45
 
46 46
 
47 47
         $callback = $this->getMockBuilder('\Laminas\Stdlib\CallbackHandler')
48
-                         ->disableOriginalConstructor()
49
-                         ->getMock();
48
+                            ->disableOriginalConstructor()
49
+                            ->getMock();
50 50
 
51 51
         $events = $this->getMockBuilder('\Laminas\EventManager\SharedEventManagerInterface')
52
-                       ->setMethods(array('attach'))
53
-                       ->getMockForAbstractClass();
52
+                        ->setMethods(array('attach'))
53
+                        ->getMockForAbstractClass();
54 54
 
55 55
         $events->expects($this->once())
56
-               ->method('attach')
57
-               ->with($expId, $expEvent, $expCallback, $expPriority)
58
-               ->willReturn($expCallback);
56
+                ->method('attach')
57
+                ->with($expId, $expEvent, $expCallback, $expPriority)
58
+                ->willReturn($expCallback);
59 59
 
60 60
         $events->expects($this->once())
61
-               ->method('detach')
62
-               ->with($expCallback, 'Laminas\Mvc\Application')
63
-               ->willReturn(true);
61
+                ->method('detach')
62
+                ->with($expCallback, 'Laminas\Mvc\Application')
63
+                ->willReturn(true);
64 64
 
65 65
 
66 66
         $target->attachShared($events);
Please login to merge, or discard this patch.
module/Auth/test/AuthTest/Controller/RegisterControllerTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,8 @@
 block discarded – undo
54 54
 
55 55
 
56 56
         $this->serviceMock = $this->getMockBuilder('Auth\Service\Register')
57
-                                  ->disableOriginalConstructor()
58
-                                  ->getMock();
57
+                                    ->disableOriginalConstructor()
58
+                                    ->getMock();
59 59
 
60 60
 
61 61
         $this->paramsMock = $this->getMockBuilder('Laminas\Mvc\Controller\Plugin\Params')
Please login to merge, or discard this patch.
module/Auth/test/TestConfig.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@  discard block
 block discarded – undo
8 8
 use PHPUnit\Framework\TestCase;
9 9
     'modules' => array_merge($commonModules,array(
10 10
         'Core',
11
-	    'Auth',
12
-	    'Jobs',
13
-	    'Organizations',
11
+        'Auth',
12
+        'Jobs',
13
+        'Organizations',
14 14
     )),
15 15
 
16 16
     // These are various options for the listeners attached to the ModuleManager
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     //     ),
69 69
     // )
70 70
 
71
-   // Initial configuration with which to seed the ServiceManager.
72
-   // Should be compatible with Laminas\ServiceManager\Config.
73
-   // 'service_manager' => array(),
71
+    // Initial configuration with which to seed the ServiceManager.
72
+    // Should be compatible with Laminas\ServiceManager\Config.
73
+    // 'service_manager' => array(),
74 74
 );
Please login to merge, or discard this patch.