Completed
Push — prototype ( 3bfdd7...aec713 )
by Peter
07:47
created
library/WebinoViewLib/Component/Javascript/Src.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,6 +46,6 @@
 block discarded – undo
46 46
         $node
47 47
             ->setPriority(-110)
48 48
             ->setLocator('head')
49
-            ->setHtml('{$_innerHtml} <script src="' . $this->src . '"></script>');
49
+            ->setHtml('{$_innerHtml} <script src="'.$this->src.'"></script>');
50 50
     }
51 51
 }
Please login to merge, or discard this patch.
library/WebinoAppLib/Console/ConsoleHelp.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,12 +63,12 @@  discard block
 block discarded – undo
63 63
 
64 64
         $newArgumentsDescription = [];
65 65
         foreach ($argumentsDescription as $key => $value) {
66
-            $newArgumentsDescription[" <green>$key</green>"] = '- ' . $value;
66
+            $newArgumentsDescription[" <green>$key</green>"] = '- '.$value;
67 67
         }
68 68
 
69 69
         $newOptionsDescription = [];
70 70
         foreach ($optionsDescription as $key => $value) {
71
-            $newOptionsDescription[" <green>--$key</green>"] = '- ' . $value;
71
+            $newOptionsDescription[" <green>--$key</green>"] = '- '.$value;
72 72
         }
73 73
 
74 74
         $cli = $event->getCli();
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         $description
82 82
             and $cli
83 83
                 ->yellow()->bold('Description:')
84
-                ->out(' ' . str_replace(PHP_EOL, PHP_EOL . ' ', $description))->br();
84
+                ->out(' '.str_replace(PHP_EOL, PHP_EOL.' ', $description))->br();
85 85
 
86 86
         $newArgumentsDescription
87 87
             and $cli
Please login to merge, or discard this patch.
library/WebinoAppLib/Console/ConsoleCredits.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         }
47 47
 
48 48
         $note = 'Webino™ is brought to you thanks to authors and contributors '
49
-              . 'of above third-party libraries also.';
49
+                . 'of above third-party libraries also.';
50 50
 
51 51
         $cli
52 52
             ->border()
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         $credits = $event->getApp()->get(Credits::class);
42 42
 
43 43
         // third-party
44
-        foreach ($credits->getCredits(__DIR__ . '/../../../vendor') as $item) {
44
+        foreach ($credits->getCredits(__DIR__.'/../../../vendor') as $item) {
45 45
             $cli->bold($item[0])->whisper($item[1]);
46 46
         }
47 47
 
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
             ->comment($note)
54 54
             ->border()->br()
55 55
             ->bold()->inline(Credits::VENDOR_COPYRIGHT)
56
-            ->out(' (' . Credits::VENDOR_URL . ')')
56
+            ->out(' ('.Credits::VENDOR_URL.')')
57 57
             ->bold()->inline('Author: ')
58 58
             ->whisper()->inline(Credits::AUTHOR_NAME)
59
-            ->out(' (' . Credits::AUTHOR_URL . ')')
59
+            ->out(' ('.Credits::AUTHOR_URL.')')
60 60
             ->br();
61 61
     }
62 62
 }
Please login to merge, or discard this patch.
library/WebinoAppLib/Console/ConsoleDefault.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
             }
95 95
 
96 96
             $space = str_repeat(' ', $maxLen + 10 - strlen($command));
97
-            $cli->out($space . ' - ' . $title);
97
+            $cli->out($space.' - '.$title);
98 98
         }
99 99
 
100 100
         $cli->br();
Please login to merge, or discard this patch.
library/WebinoAppLib/Event/DispatchEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
         }
78 78
 
79 79
         $_response = $this->getResponse();
80
-        $_response->setContent($_response->getContent() . $this->normalizeResponseContent($response));
80
+        $_response->setContent($_response->getContent().$this->normalizeResponseContent($response));
81 81
         return $this;
82 82
     }
83 83
 
Please login to merge, or discard this patch.
library/WebinoAppLib/Service/Console.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -639,7 +639,7 @@
 block discarded – undo
639 639
      */
640 640
     public function sp($count = 1)
641 641
     {
642
-        for ($i=0; $i < $count; $i++) {
642
+        for ($i = 0; $i < $count; $i++) {
643 643
             $this->engine->inline(' ');
644 644
         }
645 645
         return $this;
Please login to merge, or discard this patch.
library/WebinoHtmlLib/Html/HeightStyleTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function setHeight($height, $units = 'px')
26 26
     {
27
-        $this->setStyle(['height' => $height . $units]);
27
+        $this->setStyle(['height' => $height.$units]);
28 28
         return $this;
29 29
     }
30 30
 }
Please login to merge, or discard this patch.