Passed
Branch master (8bec36)
by Rolands
03:48
created
Category
example/ConsoleApp.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -16,16 +16,16 @@
 block discarded – undo
16 16
         $backgroundColors = (new ReflectionClass(Background::class))->getConstants();
17 17
         $options = (new ReflectionClass(Option::class))->getConstants();
18 18
 
19
-        foreach ($textColors as $color){
20
-            Console::log($text."\n",$color);
19
+        foreach ($textColors as $color) {
20
+            Console::log($text . "\n", $color);
21 21
         }
22 22
 
23
-        foreach ($backgroundColors as $color){
24
-            Console::log($text."\n",null,$color);
23
+        foreach ($backgroundColors as $color) {
24
+            Console::log($text . "\n", null, $color);
25 25
         }
26 26
 
27
-        foreach ($options as $option){
28
-            Console::log($text."\n",null,null,$option);
27
+        foreach ($options as $option) {
28
+            Console::log($text . "\n", null, null, $option);
29 29
         }
30 30
     }
31 31
 }
Please login to merge, or discard this patch.