Test Failed
Push — master ( 628e98...a0d58b )
by Pieter
03:08
created
src/Oauth/Header.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace PeeHaa\AsyncTwitter\Oauth;
4 4
 
@@ -19,13 +19,13 @@  discard block
 block discarded – undo
19 19
     public function getHeader(): string
20 20
     {
21 21
         $header = 'OAuth ';
22
-        $header.= 'oauth_consumer_key="' . $this->parameters->getConsumerKey() . '", ';
23
-        $header.= 'oauth_nonce="' . $this->parameters->getNonce() . '", ';
24
-        $header.= 'oauth_signature="' . $this->signature->getSignature() . '", ';
25
-        $header.= 'oauth_signature_method="' . $this->parameters->getSignatureMethod() . '", ';
26
-        $header.= 'oauth_timestamp="' . $this->parameters->getTimestamp() . '", ';
27
-        $header.= 'oauth_token="' . $this->parameters->getToken() . '", ';
28
-        $header.= 'oauth_version="' . $this->parameters->getVersion() . '"';
22
+        $header .= 'oauth_consumer_key="' . $this->parameters->getConsumerKey() . '", ';
23
+        $header .= 'oauth_nonce="' . $this->parameters->getNonce() . '", ';
24
+        $header .= 'oauth_signature="' . $this->signature->getSignature() . '", ';
25
+        $header .= 'oauth_signature_method="' . $this->parameters->getSignatureMethod() . '", ';
26
+        $header .= 'oauth_timestamp="' . $this->parameters->getTimestamp() . '", ';
27
+        $header .= 'oauth_token="' . $this->parameters->getToken() . '", ';
28
+        $header .= 'oauth_version="' . $this->parameters->getVersion() . '"';
29 29
 
30 30
         return $header;
31 31
     }
Please login to merge, or discard this patch.
src/Oauth/Parameters.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace PeeHaa\AsyncTwitter\Oauth;
4 4
 
Please login to merge, or discard this patch.
src/Oauth/Signature/BaseString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace PeeHaa\AsyncTwitter\Oauth\Signature;
4 4
 
Please login to merge, or discard this patch.
src/Http/Artax.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace PeeHaa\AsyncTwitter\Http;
4 4
 
Please login to merge, or discard this patch.
src/Credentials/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace PeeHaa\AsyncTwitter\Credentials;
4 4
 
Please login to merge, or discard this patch.
src/Exception.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace PeeHaa\AsyncTwitter;
4 4
 
Please login to merge, or discard this patch.
src/Request/Url.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace PeeHaa\AsyncTwitter\Request;
4 4
 
Please login to merge, or discard this patch.
examples/retweet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace PeeHaa\AsyncTwitter\Examples;
4 4
 
Please login to merge, or discard this patch.
src/Api/Client/Exception/RequestFailed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
     public function hasExtraErrorInfo(): bool
19 19
     {
20
-        return (bool)count($this->extraErrorInfo);
20
+        return (bool) count($this->extraErrorInfo);
21 21
     }
22 22
 
23 23
     public function getExtraErrorInfo(): array
Please login to merge, or discard this patch.