Completed
Branch develop (725a22)
by Gabriel
04:40
created
src/Os.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      */
88 88
     public function setName($name)
89 89
     {
90
-        $this->name = (string)$name;
90
+        $this->name = (string) $name;
91 91
 
92 92
         return $this;
93 93
     }
@@ -100,11 +100,11 @@  discard block
 block discarded – undo
100 100
     public function getVersion()
101 101
     {
102 102
         if (isset($this->version)) {
103
-            return (string)$this->version;
103
+            return (string) $this->version;
104 104
         } else {
105 105
             OsDetector::detect($this, $this->getUserAgent());
106 106
 
107
-            return (string)$this->version;
107
+            return (string) $this->version;
108 108
         }
109 109
     }
110 110
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function setVersion($version)
119 119
     {
120
-        $this->version = (string)$version;
120
+        $this->version = (string) $version;
121 121
 
122 122
         return $this;
123 123
     }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      */
152 152
     public function setIsMobile($isMobile = true)
153 153
     {
154
-        $this->isMobile = (bool)$isMobile;
154
+        $this->isMobile = (bool) $isMobile;
155 155
     }
156 156
 
157 157
     /**
Please login to merge, or discard this patch.