Passed
Push — master ( 32e217...198486 )
by David
01:29
created
src/Clients/WebClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -276,7 +276,7 @@
 block discarded – undo
276 276
      */
277 277
     public function setTimeout($value)
278 278
     {
279
-        $this->setOption(CURLOPT_TIMEOUT, (int) $value);
279
+        $this->setOption(CURLOPT_TIMEOUT, ( int )$value);
280 280
 
281 281
         return $this;
282 282
     }
Please login to merge, or discard this patch.
src/Metadata/ImageMetadata.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,13 +51,13 @@
 block discarded – undo
51 51
             case 'image height':
52 52
             case 'tiff:imageheigth':
53 53
             case 'tiff:imagelength':
54
-                $this->height = (int) $value;
54
+                $this->height = ( int )$value;
55 55
                 break;
56 56
 
57 57
             case 'width':
58 58
             case 'image width':
59 59
             case 'tiff:imagewidth':
60
-                $this->width = (int) $value;
60
+                $this->width = ( int )$value;
61 61
                 break;
62 62
 
63 63
             case 'x-tika:content':
Please login to merge, or discard this patch.
src/Metadata/DocumentMetadata.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -141,12 +141,12 @@
 block discarded – undo
141 141
             case 'nbpage':
142 142
             case 'page-count':
143 143
             case 'xmptpg:npages':
144
-                $this->pages = (int) $value;
144
+                $this->pages = ( int )$value;
145 145
                 break;
146 146
 
147 147
             case 'nbword':
148 148
             case 'word-count':
149
-                $this->words = (int) $value;
149
+                $this->words = ( int )$value;
150 150
                 break;
151 151
 
152 152
             case 'creation-date':
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
     {
180 180
         if(static::MODE == 'cli' && is_numeric($size))
181 181
         {
182
-            $this->chunkSize = (int)$size;
182
+            $this->chunkSize = ( int )$size;
183 183
         }
184 184
         elseif(static::MODE == 'web')
185 185
         {
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
      */
212 212
     public function setDownloadRemote($download)
213 213
     {
214
-        $this->downloadRemote = (bool) $download;
214
+        $this->downloadRemote = ( bool )$download;
215 215
 
216 216
         return $this;
217 217
     }
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
      */
396 396
     public function setChecked($checked)
397 397
     {
398
-        $this->checked = (bool) $checked;
398
+        $this->checked = ( bool )$checked;
399 399
     }
400 400
 
401 401
     /**
Please login to merge, or discard this patch.