Completed
Push — master ( ca1db9...a19c54 )
by Andrii
02:44
created
src/console/DoController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,18 +49,18 @@  discard block
 block discarded – undo
49 49
             'lg' => 'height: 480px; width: 300px;',
50 50
         ];
51 51
 
52
-        $res = '.pi { display: inline-block;height: 38px;width: 60px; }' . PHP_EOL;
52
+        $res = '.pi { display: inline-block;height: 38px;width: 60px; }'.PHP_EOL;
53 53
 
54 54
         foreach (array_keys($sizes) as $size) {
55
-            $res .= ".pi.pi-$size { $sizes[$size] }" . PHP_EOL;
55
+            $res .= ".pi.pi-$size { $sizes[$size] }".PHP_EOL;
56 56
         }
57 57
 
58 58
         foreach (array_keys($sizes) as $size) {
59 59
             foreach ($this->getIconsList() as $name) {
60 60
                 if ($size === 'xs') {
61
-                    $res .= ".pi.pi-$size.pi-$name, .pi.pi-$name { background: url('../png/$size/$name.png') no-repeat right; }" . PHP_EOL;
61
+                    $res .= ".pi.pi-$size.pi-$name, .pi.pi-$name { background: url('../png/$size/$name.png') no-repeat right; }".PHP_EOL;
62 62
                 } else {
63
-                    $res .= ".pi.pi-$size.pi-$name { background: url('../png/$size/$name.png') no-repeat right; }" . PHP_EOL;
63
+                    $res .= ".pi.pi-$size.pi-$name { background: url('../png/$size/$name.png') no-repeat right; }".PHP_EOL;
64 64
                 }
65 65
             }
66 66
             $res .= PHP_EOL;
@@ -88,14 +88,14 @@  discard block
 block discarded – undo
88 88
             foreach ($this->getIconsList() as $name) {
89 89
                 $str .= "![$name](https://raw.githubusercontent.com/hiqdev/payment-icons/master/src/assets/png/$size/$name.png)\n";
90 90
             }
91
-            FileHelper::write('@hiqdev/paymenticons/../docs/Preview' . strtoupper($size) . '.md', $str);
91
+            FileHelper::write('@hiqdev/paymenticons/../docs/Preview'.strtoupper($size).'.md', $str);
92 92
             if ($size === 'xs') {
93 93
                 $ps = [];
94 94
                 foreach ($sizes as $s) {
95 95
                     $us = strtoupper($s);
96 96
                     $ps[] = "[$us](docs/Preview$us.md)";
97 97
                 }
98
-                $str .= "\n" . implode(' | ', $ps);
98
+                $str .= "\n".implode(' | ', $ps);
99 99
                 FileHelper::write('@hiqdev/paymenticons/../docs/readme/Preview.md', $str);
100 100
             }
101 101
         }
Please login to merge, or discard this patch.