Completed
Push — master ( 77d1e9...5e3ebb )
by Pieter
02:35
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.
examples/mentions-timeline.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.
examples/home-timeline.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.
examples/retweets-of-me.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.
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.
examples/user-timeline.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.
examples/retweets.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.
examples/tweet.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/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\Examples;
4 4
 
Please login to merge, or discard this patch.