Passed
Push — master ( 1b58c8...5bb8d0 )
by Aleksandr
02:30
created
src/Helpers/array.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     function trim_first(array $array): array
12 12
     {
13
-        array_walk($array, function (&$item) {
13
+        array_walk($array, function(&$item) {
14 14
             list($firstElement) = $item;
15 15
 
16 16
             $item = trim($firstElement);
Please login to merge, or discard this patch.
src/System/Windows/UtilityTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
      */
18 18
     public function getUtility()
19 19
     {
20
-        return static::$utility.' '.static::$argument;
20
+        return static::$utility . ' ' . static::$argument;
21 21
     }
22 22
 }
Please login to merge, or discard this patch.
src/System/Windows/Profile/Service.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function create(string $password): bool
48 48
     {
49
-        return (bool) file_put_contents($this->getTmpProfileFileName(), $this->renderTemplate($password));
49
+        return (bool)file_put_contents($this->getTmpProfileFileName(), $this->renderTemplate($password));
50 50
     }
51 51
 
52 52
     /**
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         $hex = '';
135 135
 
136 136
         for ($i = 0; $i < $len; $i++) {
137
-            $hex .= substr('0'.dechex(ord($ssid[$i])), -2);
137
+            $hex .= substr('0' . dechex(ord($ssid[$i])), -2);
138 138
         }
139 139
 
140 140
         return strtoupper($hex);
Please login to merge, or discard this patch.