Completed
Push — master ( 0ee8c5...4084ed )
by Anton
03:59 queued 02:09
created
application/modules/test/controllers/route-static.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * @route /another-route.html
19 19
  * @return string
20 20
  */
21
-return function () {
21
+return function() {
22 22
     /**
23 23
      * @var Controller $this
24 24
      */
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
  * @route /another-route.html
40 40
  */</code></pre></div>
41 41
 CODE;
42
-    $this->assign('title', $module .'/'. $controller);
42
+    $this->assign('title', $module.'/'.$controller);
43 43
     $this->assign('content', $content);
44 44
     return 'modal.phtml';
45 45
 };
Please login to merge, or discard this patch.
application/modules/test/controllers/route-with-params.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
  * @param string $c
21 21
  * @return string
22 22
  */
23
-return function ($a, $b, $c) {
23
+return function($a, $b, $c) {
24 24
     /**
25 25
      * @var Controller $this
26 26
      */
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      echo \$c; <em>// '$c'</em>
53 53
  }</code></pre></div>
54 54
 CODE;
55
-    $this->assign('title', $module .'/'. $controller);
55
+    $this->assign('title', $module.'/'.$controller);
56 56
     $this->assign('content', $content);
57 57
     return 'modal.phtml';
58 58
 };
Please login to merge, or discard this patch.
application/modules/test/controllers/route-with-param.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
  * @param string $a
21 21
  * @return string
22 22
  */
23
-return function ($a = '42') {
23
+return function($a = '42') {
24 24
     /**
25 25
      * @var Controller $this
26 26
      */
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
  }</code></pre></div>
50 50
 
51 51
 CODE;
52
-    $this->assign('title', $module .'/'. $controller);
52
+    $this->assign('title', $module.'/'.$controller);
53 53
     $this->assign('content', $content);
54 54
     return 'modal.phtml';
55 55
 };
Please login to merge, or discard this patch.
application/modules/test/controllers/mailer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
  * @param string $email
21 21
  * @return void
22 22
  */
23
-return function ($email = '[email protected]') {
23
+return function($email = '[email protected]') {
24 24
     /**
25 25
      * @var Controller $this
26 26
      */
Please login to merge, or discard this patch.
application/modules/test/controllers/route-with-get-params.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * @param string $alias
18 18
  * @return string
19 19
  */
20
-return function ($alias) {
20
+return function($alias) {
21 21
     /**
22 22
      * @var Controller $this
23 23
      */
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      echo \$id;    <em>// '$id'</em>
41 41
  }</code></pre></div>
42 42
 CODE;
43
-    $this->assign('title', $module .'/'. $controller);
43
+    $this->assign('title', $module.'/'.$controller);
44 44
     $this->assign('content', $content);
45 45
     return 'modal.phtml';
46 46
 };
Please login to merge, or discard this patch.