Completed
Push — master ( 382fef...8bf8f9 )
by Pieter
03:12
created
examples/get/account/settings.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\Get\Account;
4 4
 
Please login to merge, or discard this patch.
examples/get/account/verify-credentials.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\Get\Account;
4 4
 
Please login to merge, or discard this patch.
examples/post/account/settings.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\Post\Account;
4 4
 
Please login to merge, or discard this patch.
examples/post/account/remove-profile-banner.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\Post\Account;
4 4
 
Please login to merge, or discard this patch.
src/Api/Request/Get/Account/VerifyCredentials.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\Api\Request\Get\Account;
4 4
 
Please login to merge, or discard this patch.
src/Api/Request/Get/Account/Settings.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\Api\Request\Get\Account;
4 4
 
Please login to merge, or discard this patch.
src/Api/Request/Post/Account/RemoveProfileBanner.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\Api\Request\Post\Account;
4 4
 
Please login to merge, or discard this patch.
src/Api/Request/Post/Account/Settings.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\Api\Request\Post\Account;
4 4
 
Please login to merge, or discard this patch.
src/Api/Client/Client.php 1 patch
Spacing   +2 added lines, -2 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\Api\Client;
4 4
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     private function handleResponse(Request $request, Promise $responsePromise)
136 136
     {
137 137
         /** @var HttpResponse $response */
138
-        $response = yield $responsePromise;;
138
+        $response = yield $responsePromise; ;
139 139
 
140 140
         // @todo for v2 we need to make this less stupid by properly handling responses
141 141
         //       instead of this band-aid solution. and just this is bad and I feel bad.
Please login to merge, or discard this patch.