Passed
Push — main ( 48d83d...e868ec )
by smiley
17:19 queued 05:36
created
src/NPR/NPROneEndpoints.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
  * @link https://dev.npr.org/api/
19 19
  */
20
-class NPROneEndpoints extends EndpointMap{
20
+class NPROneEndpoints extends EndpointMap {
21 21
 
22 22
 	protected string $API_BASE = 'https://'; // i hate this so much
23 23
 
Please login to merge, or discard this patch.
src/PayPal/PayPalSandbox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 /**
16 16
  * @method \Psr\Http\Message\ResponseInterface me(array $params = ['schema'])
17 17
  */
18
-class PayPalSandbox extends PayPal{
18
+class PayPalSandbox extends PayPal {
19 19
 
20 20
 	protected string $authURL        = 'https://www.sandbox.paypal.com/connect';
21 21
 	protected string $accessTokenURL = 'https://api.sandbox.paypal.com/v1/oauth2/token';
Please login to merge, or discard this patch.
src/PayPal/PayPalEndpoints.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
  * @link https://developer.paypal.com/docs/api/identity/v1/
19 19
  */
20
-class PayPalEndpoints extends EndpointMap{
20
+class PayPalEndpoints extends EndpointMap {
21 21
 
22 22
 	protected array $me = [
23 23
 		'path'          => '/v1/identity/oauth2/userinfo',
Please login to merge, or discard this patch.
src/GitLab/GitLabV4Endpoints.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
  * @link https://docs.gitlab.com/ee/api/README.html
19 19
  */
20
-class GitLabV4Endpoints extends EndpointMap{
20
+class GitLabV4Endpoints extends EndpointMap {
21 21
 
22 22
 	protected string $API_BASE = '/v4';
23 23
 
Please login to merge, or discard this patch.
src/Steam/SteamEndpoints.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
 use chillerlan\OAuth\MagicAPI\EndpointMap;
14 14
 
15
-class SteamEndpoints extends EndpointMap{
15
+class SteamEndpoints extends EndpointMap {
16 16
 
17 17
 	/*
18 18
 	 * ISteamApps
Please login to merge, or discard this patch.
src/Twitch/TwitchEndpoints.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
 use chillerlan\OAuth\MagicAPI\EndpointMap;
13 13
 
14
-class TwitchEndpoints extends EndpointMap{
14
+class TwitchEndpoints extends EndpointMap {
15 15
 
16 16
 	protected string $API_BASE = '/helix';
17 17
 
Please login to merge, or discard this patch.
src/Spotify/SpotifyEndpoints.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
 use chillerlan\OAuth\MagicAPI\EndpointMap;
13 13
 
14
-class SpotifyEndpoints extends EndpointMap{
14
+class SpotifyEndpoints extends EndpointMap {
15 15
 
16 16
 	protected string $API_BASE = '/v1';
17 17
 
Please login to merge, or discard this patch.
src/Vimeo/Vimeo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
 	protected array $authHeaders                 = ['Accept' => 'application/vnd.vimeo.*+json;version='.self::API_VERSION];
125 125
 	protected array $apiHeaders                  = ['Accept' => 'application/vnd.vimeo.*+json;version='.self::API_VERSION];
126 126
 
127
-	protected array $defaultScopes               =  [
127
+	protected array $defaultScopes               = [
128 128
 		self::SCOPE_PRIVATE,
129 129
 		self::SCOPE_INTERACT,
130 130
 	];
Please login to merge, or discard this patch.
src/OpenCaching/OpenCachingEndpoints.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
 use chillerlan\OAuth\MagicAPI\EndpointMap;
13 13
 
14
-class OpenCachingEndpoints extends EndpointMap{
14
+class OpenCachingEndpoints extends EndpointMap {
15 15
 
16 16
 	protected string $API_BASE = '/services';
17 17
 
Please login to merge, or discard this patch.