Completed
Branch master (37040a)
by Pieter
05:32
created
Category
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/Oauth/Signature/Key.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/Oauth/Signature/Signature.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/Credentials/AccessTokenFactory.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/Credentials/AccessToken.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.