Completed
Push — master ( d76339...a77383 )
by max
02:21
created
src/Module.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 {
15 15
     public function getConfig($env = null)
16 16
     {
17
-        return include dirname(__DIR__) . '/config/module.config.php';
17
+        return include dirname(__DIR__).'/config/module.config.php';
18 18
     }
19 19
 
20 20
     public function getAutoloaderConfig()
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
         return [
23 23
             'Zend\Loader\StandardAutoloader' => [
24 24
                 'namespaces' => [
25
-                    __NAMESPACE__ => dirname(__DIR__) . '/src/' . __NAMESPACE__,
25
+                    __NAMESPACE__ => dirname(__DIR__).'/src/'.__NAMESPACE__,
26 26
                 ],
27 27
             ],
28 28
         ];
Please login to merge, or discard this patch.
src/Service/InteractiveAuth.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     public function __construct(Authenticator $authService, SessionManager $sessionManager)
32 32
     {
33 33
         if (!$authService->getStorage() instanceof Session) {
34
-            throw new RuntimeException(__CLASS__ . ' requires SessionStorage');
34
+            throw new RuntimeException(__CLASS__.' requires SessionStorage');
35 35
         }
36 36
 
37 37
         $this->authService = $authService;
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         $authAdapter = $this->authService->getAdapter();
50 50
 
51 51
         if (!$authAdapter instanceof ValidatableAdapterInterface) {
52
-            throw new RuntimeException(__CLASS__ . ' requires ValidatableAdapterInterface');
52
+            throw new RuntimeException(__CLASS__.' requires ValidatableAdapterInterface');
53 53
         }
54 54
 
55 55
         $authAdapter->setIdentity($identity)
Please login to merge, or discard this patch.
config/module.config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
     'view_manager' => array(
14 14
         'template_path_stack' => array(
15
-            __DIR__ . '/../view',
15
+            __DIR__.'/../view',
16 16
         ),
17 17
     ),
18 18
 
Please login to merge, or discard this patch.