Completed
Pull Request — master (#2)
by Andreas
04:07
created
config/module.config.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -39,21 +39,21 @@  discard block
 block discarded – undo
39 39
     'view_helpers' => array(
40 40
         'invokables' => array(
41 41
             'mailto' => Mailto::class,
42
-		),
43
-	),
44
-	'controllers' => array(
45
-		'invokables' => array(
46
-			ProxyController::class => ProxyController::class
47
-		),
48
-	),
49
-	'router' => array(
50
-		'routes' => array(
51
-        	'mailproxy' => array(
52
-            	'type' => 'Segment',
42
+        ),
43
+    ),
44
+    'controllers' => array(
45
+        'invokables' => array(
46
+            ProxyController::class => ProxyController::class
47
+        ),
48
+    ),
49
+    'router' => array(
50
+        'routes' => array(
51
+            'mailproxy' => array(
52
+                'type' => 'Segment',
53 53
                 'options' => array(
54
-                	'route' => '/mailproxy[/:id]',
54
+                    'route' => '/mailproxy[/:id]',
55 55
                     'defaults' => array(
56
-                    	'controller' => ProxyController::class,
56
+                        'controller' => ProxyController::class,
57 57
                         'action'     => 'index',
58 58
                         'id'         => 'moc.elpmaxe@ofni',
59 59
                     ),
@@ -68,14 +68,14 @@  discard block
 block discarded – undo
68 68
         ),
69 69
     ),
70 70
     'view_manager' => array(
71
-    	'display_not_found_reason' => true,
72
-    	'display_exceptions'       => true,
73
-    	'doctype'                  => 'HTML5',
74
-    	'not_found_template'       => 'error/404',
75
-    	'exception_template'       => 'error/index',
76
-    	'template_map' => array(),
77
-    	'template_path_stack' => array(
78
-    		__DIR__ . '/../view',
79
-    	),
71
+        'display_not_found_reason' => true,
72
+        'display_exceptions'       => true,
73
+        'doctype'                  => 'HTML5',
74
+        'not_found_template'       => 'error/404',
75
+        'exception_template'       => 'error/index',
76
+        'template_map' => array(),
77
+        'template_path_stack' => array(
78
+            __DIR__ . '/../view',
79
+        ),
80 80
     ),
81 81
 );
Please login to merge, or discard this patch.
src/View/Helper/Mailto.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
                 $classes = $params['class'];
84 84
                 $classes = explode(' ', $classes);
85 85
             }
86
-            if (! in_array($this->mailtoclass, $classes)) {
86
+            if ( ! in_array($this->mailtoclass, $classes)) {
87 87
                 $classes[] = $this->mailtoclass;
88 88
             }
89 89
             $params['class'] = implode(' ', $classes);
Please login to merge, or discard this patch.