@@ -276,7 +276,7 @@ |
||
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 | } |
@@ -51,13 +51,13 @@ |
||
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': |
@@ -141,12 +141,12 @@ |
||
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': |
@@ -179,7 +179,7 @@ discard block |
||
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 |
||
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 |
||
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 | /** |