Completed
Push — master ( 891867...e2e261 )
by
unknown
02:14
created
src/modules/test/controllers/grid-table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 /**
15 15
  * @return void
16 16
  */
17
-return function () {
17
+return function() {
18 18
     /**
19 19
      * @var Controller $this
20 20
      */
Please login to merge, or discard this patch.
src/modules/test/controllers/events.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 /**
18 18
  * @return array
19 19
  */
20
-return function () {
20
+return function() {
21 21
     /**
22 22
      * @var Controller $this
23 23
      */
@@ -30,35 +30,35 @@  discard block
 block discarded – undo
30 30
 
31 31
     EventManager::attach(
32 32
         'testevent',
33
-        function (Event $event) {
33
+        function(Event $event) {
34 34
             return $event->getTarget()*2;
35 35
         }
36 36
     );
37 37
 
38 38
     EventManager::attach(
39 39
         'testevent',
40
-        function (Event $event) {
40
+        function(Event $event) {
41 41
             return $event->getTarget()*2;
42 42
         }
43 43
     );
44 44
 
45 45
     EventManager::attach(
46 46
         'testspace:event',
47
-        function (Event $event) {
47
+        function(Event $event) {
48 48
             return $event->getTarget()+4;
49 49
         }
50 50
     );
51 51
 
52 52
     EventManager::attach(
53 53
         'testspace:event',
54
-        function (Event $event) {
54
+        function(Event $event) {
55 55
             return $event->getTarget()+2;
56 56
         }
57 57
     );
58 58
 
59 59
     EventManager::attach(
60 60
         'testspace:event2',
61
-        function (Event $event) {
61
+        function(Event $event) {
62 62
             $event->setTarget($event->getTarget()+5);
63 63
             return false;
64 64
         }
@@ -66,14 +66,14 @@  discard block
 block discarded – undo
66 66
 
67 67
     EventManager::attach(
68 68
         'testspace:event2',
69
-        function (Event $event) {
69
+        function(Event $event) {
70 70
             echo "Never run".$event->getName();
71 71
         }
72 72
     );
73 73
 
74 74
     EventManager::attach(
75 75
         'testspace',
76
-        function (Event $event) {
76
+        function(Event $event) {
77 77
             return $event->getTarget()+1;
78 78
         }
79 79
     );
Please login to merge, or discard this patch.
src/modules/test/controllers/route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 /**
15 15
  * @return void
16 16
  */
17
-return function () {
17
+return function() {
18 18
     /**
19 19
      * @var Controller $this
20 20
      */
Please login to merge, or discard this patch.
src/modules/test/controllers/route-with-param.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 int $a
21 21
  * @return false
22 22
  */
23
-return function ($a = 42) {
23
+return function($a = 42) {
24 24
     /**
25 25
      * @var Controller $this
26 26
      */
Please login to merge, or discard this patch.
src/modules/test/controllers/mailer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
  * @param string $email
20 20
  * @return void
21 21
  */
22
-return function ($email = "[email protected]") {
22
+return function($email = "[email protected]") {
23 23
     /**
24 24
      * @var Controller $this
25 25
      */
Please login to merge, or discard this patch.
src/modules/test/controllers/db-query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 /**
15 15
  * @return void
16 16
  */
17
-return function () {
17
+return function() {
18 18
     /**
19 19
      * @var Controller $this
20 20
      */
Please login to merge, or discard this patch.
src/modules/test/controllers/cache-data.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * @return void
19 19
  * @throws \Exception
20 20
  */
21
-return function ($id = null) {
21
+return function($id = null) {
22 22
     /**
23 23
      * @var Controller $this
24 24
      */
Please login to merge, or discard this patch.