Skip to content

Commit 64037b0

Browse files
authored
Fixed binary operator spaces (CS)
1 parent 63c8cbb commit 64037b0

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

src/Collection/CountableRecordsTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ public function count()
1313

1414
private function setCount($count)
1515
{
16-
$this->count = $count|0;
16+
$this->count = $count | 0;
1717
}
1818
}

src/Net/Http/HttpOptions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public function getMaxRedirects()
220220
*/
221221
public function setMaxRedirects($maxRedirects)
222222
{
223-
return $this->set('max_redirects', $maxRedirects|0);
223+
return $this->set('max_redirects', $maxRedirects | 0);
224224
}
225225

226226
/**

src/Net/Soap/SoapOptions.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function getVersion()
8484
*/
8585
public function setVersion($version)
8686
{
87-
return $this->set('soap_version', $version|0);
87+
return $this->set('soap_version', $version | 0);
8888
}
8989

9090
/**
@@ -102,7 +102,7 @@ public function getCompression()
102102
*/
103103
public function setCompression($compression)
104104
{
105-
return $this->set('compression', $compression|0);
105+
return $this->set('compression', $compression | 0);
106106
}
107107

108108
/**
@@ -156,7 +156,7 @@ public function getProxyPort()
156156
*/
157157
public function setProxyPort($port)
158158
{
159-
return $this->set('proxy_port', $port|0);
159+
return $this->set('proxy_port', $port | 0);
160160
}
161161

162162
/**
@@ -284,7 +284,7 @@ public function getConnectionTimeout()
284284
*/
285285
public function setConnectionTimeout($timeout)
286286
{
287-
return $this->set('connection_timeout', $timeout|0);
287+
return $this->set('connection_timeout', $timeout | 0);
288288
}
289289

290290
/**
@@ -322,7 +322,7 @@ public function getCacheWsdl()
322322
*/
323323
public function setCacheWsdl($cacheMode)
324324
{
325-
return $this->set('cache_wsdl', $cacheMode|0);
325+
return $this->set('cache_wsdl', $cacheMode | 0);
326326
}
327327

328328
/**
@@ -359,7 +359,7 @@ public function getFeatures()
359359
*/
360360
public function setFeatures($features)
361361
{
362-
return $this->set('features', $features|0);
362+
return $this->set('features', $features | 0);
363363
}
364364

365365
/**
@@ -378,7 +378,7 @@ public function getSslMethod()
378378
*/
379379
public function setSslMethod($method)
380380
{
381-
return $this->set('ssl_method', $method|0);
381+
return $this->set('ssl_method', $method | 0);
382382
}
383383

384384
/**

src/Specification/ImportSpecification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ final public function getMaxFetchAttempts()
196196
*/
197197
final public function setMaxFetchAttempts($attempts)
198198
{
199-
$this->maxFetchAttempts = max(1, $attempts|0);
199+
$this->maxFetchAttempts = max(1, $attempts | 0);
200200

201201
return $this;
202202
}

0 commit comments

Comments
 (0)