Test Setup Failed
Push — master ( 6c5ede...e3c3a1 )
by Markus
03:01
created
src/Forum/HTMLForm/CommentForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
                 "submit" => [
51 51
                     "type" => "submit",
52 52
                     "value" => "Answer",
53
-                    "callback" => [$this, "callbackSubmit"]
53
+                    "callback" => [ $this, "callbackSubmit" ]
54 54
                 ],
55 55
             ]
56 56
         );
Please login to merge, or discard this patch.
view/forum/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 $items = isset($items) ? $items : null;
12 12
 $session = $this->di->get("session");
13 13
 $filter = $this->di->get("textfilter");
14
-$tags = [];
14
+$tags = [ ];
15 15
 // var_dump($session);
16 16
 ?>
17 17
 <h1>Welcome to the forum</h1>
@@ -41,5 +41,5 @@  discard block
 block discarded – undo
41 41
     <?php endforeach; ?>
42 42
 </article>
43 43
 
44
-<?php var_dump(array_count_values($tags));; ?>
44
+<?php var_dump(array_count_values($tags)); ; ?>
45 45
 <?php var_dump($tags); ?>
Please login to merge, or discard this patch.
view/forum/tags.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 $items = isset($items) ? $items : null;
12 12
 // var_dump($items);
13 13
 // $session = $this->di->get("session");
14
-$tags = [];
14
+$tags = [ ];
15 15
 ?>
16 16
 
17 17
 <?php if (!$items) : ?>
Please login to merge, or discard this patch.