Completed
Push — master ( 127bd9...de6ffa )
by Aleksandr
21s queued 10s
created
src/System/Linux/Network.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,12 +46,12 @@
 block discarded – undo
46 46
     {
47 47
         $this->ssid = $network[1];
48 48
         $this->bssid = $network[2];
49
-        $this->channel = (int) $network[4];
49
+        $this->channel = (int)$network[4];
50 50
         $this->security = $network[7];
51
-        $this->securityFlags = $network[8].' '.$network[9];
51
+        $this->securityFlags = $network[8] . ' ' . $network[9];
52 52
         $this->dbm = $network[6];
53
-        $this->quality = to_quality((int) $network[6]);
54
-        $this->frequency = (int) $network[5];
53
+        $this->quality = to_quality((int)$network[6]);
54
+        $this->frequency = (int)$network[5];
55 55
         $this->connected = ($network[0] == self::POSITIVE_CONNECTION_FLAG);
56 56
 
57 57
         return $this;
Please login to merge, or discard this patch.