Passed
Push — master ( a6fd9c...78040a )
by smiley
01:37
created
src/OpenStreetmap/OpenStreetmapEndpoints.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
 /**
18 18
  */
19
-class OpenStreetmapEndpoints extends EndpointMap{
19
+class OpenStreetmapEndpoints extends EndpointMap {
20 20
 
21 21
 	protected $API_BASE = '/api/0.6';
22 22
 
Please login to merge, or discard this patch.
src/OpenStreetmap/OpenStreetmap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 /**
21 21
  * @method \Psr\Http\Message\ResponseInterface userDetails()
22 22
  */
23
-class OpenStreetmap extends OAuth1Provider{
23
+class OpenStreetmap extends OAuth1Provider {
24 24
 
25 25
 	protected $apiURL          = 'https://api.openstreetmap.org';
26 26
 	protected $requestTokenURL = 'https://www.openstreetmap.org/oauth/request_token';
Please login to merge, or discard this patch.
src/OpenCaching/OpenCaching.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
  * @method \Psr\Http\Message\ResponseInterface usersUser(array $params = ['fields', 'user_uuid', 'format', 'callback'])
61 61
  * @method \Psr\Http\Message\ResponseInterface usersUsers(array $params = ['user_uuids', 'fields', 'format', 'callback'])
62 62
  */
63
-class OpenCaching extends OAuth1Provider{
63
+class OpenCaching extends OAuth1Provider {
64 64
 
65 65
 	protected $requestTokenURL = 'https://www.opencaching.de/okapi/services/oauth/request_token';
66 66
 	protected $authURL         = 'https://www.opencaching.de/okapi/services/oauth/authorize';
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
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 
15 15
 use chillerlan\HTTP\MagicAPI\EndpointMap;
16 16
 
17
-class OpenCachingEndpoints extends EndpointMap{
17
+class OpenCachingEndpoints extends EndpointMap {
18 18
 
19 19
 	/**
20 20
 	 * @link https://www.opencaching.de/okapi/services/apiref/method.html
Please login to merge, or discard this patch.
src/Google/Youtube.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@
 block discarded – undo
14 14
 
15 15
 /**
16 16
  */
17
-class Youtube extends Google{
17
+class Youtube extends Google {
18 18
 
19 19
 	public const SCOPE_YOUTUBE       = 'https://www.googleapis.com/auth/youtube';
20 20
 	public const SCOPE_YOUTUBE_GDATA = 'https://gdata.youtube.com';
21 21
 
22
-	protected $endpointMap        = YoutubeEndpoints::class;
22
+	protected $endpointMap = YoutubeEndpoints::class;
23 23
 
24 24
 }
Please login to merge, or discard this patch.
src/Google/YoutubeEndpoints.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,6 @@
 block discarded – undo
16 16
 
17 17
 /**
18 18
  */
19
-class YoutubeEndpoints extends EndpointMap{
19
+class YoutubeEndpoints extends EndpointMap {
20 20
 
21 21
 }
Please login to merge, or discard this patch.
src/Google/GoogleEndpoints.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
 /**
18 18
  */
19
-class GoogleEndpoints extends EndpointMap{
19
+class GoogleEndpoints extends EndpointMap {
20 20
 
21 21
 	protected $me = [
22 22
 		'path'          => '/userinfo/v2/me',
Please login to merge, or discard this patch.
src/Discord/DiscordEndpoints.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * @link https://discordapp.com/developers/docs/intro
19 19
  * @todo
20 20
  */
21
-class DiscordEndpoints extends EndpointMap{
21
+class DiscordEndpoints extends EndpointMap {
22 22
 
23 23
 	protected $me = [
24 24
 		'path'          => '/users/@me',
Please login to merge, or discard this patch.
src/Deezer/DeezerEndpoints.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://developers.deezer.com/api/
19 19
  */
20
-class DeezerEndpoints extends EndpointMap{
20
+class DeezerEndpoints extends EndpointMap {
21 21
 
22 22
 	protected $me = [
23 23
 		'path'          => '/user/me',
Please login to merge, or discard this patch.