Skip to content

Commit fed3aa6

Browse files
committed
Start following PSR-12 coding standard
1 parent aba1fbd commit fed3aa6

7 files changed

+19
-15
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Please submit all your bug reports, feature requests and pull requests here but
1616
If you have an idea for a new feature, please file an issue first to see if it fits the scope of this project. That way no one's time needs to be wasted.
1717

1818
## Coding Guidelines
19-
We follow the coding standards outlined in [PSR-1](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md) and [PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md). Please follow these guidelines when committing new code.
19+
We follow the coding standards outlined in [PSR-1](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md) and [PSR-12](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-12-extended-coding-style-guide.md). Please follow these guidelines when committing new code.
2020

2121
In addition to the PSR guidelines we try to adhere to the following points:
2222
* We order all methods by visibility and then alphabetically, `private`/`protected` methods first and then `public`. For example:

phpcs.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0"?>
22
<ruleset>
3-
<rule ref="PSR2"/>
3+
<rule ref="PSR12"/>
44
</ruleset>

src/Request.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
<?php
2+
23
namespace SpotifyWebAPI;
34

45
class Request
56
{
6-
const ACCOUNT_URL = 'https://accounts.spotify.com';
7-
const API_URL = 'https://api.spotify.com';
7+
public const ACCOUNT_URL = 'https://accounts.spotify.com';
8+
public const API_URL = 'https://api.spotify.com';
89

9-
const RETURN_ASSOC = 'assoc';
10-
const RETURN_OBJECT = 'object';
10+
public const RETURN_ASSOC = 'assoc';
11+
public const RETURN_OBJECT = 'object';
1112

1213
protected $curlOptions = [];
1314
protected $lastResponse = [];
@@ -256,12 +257,11 @@ public function send($method, $url, $parameters = [], $headers = [])
256257
if (preg_match('/^HTTP\/1\.\d 200 Connection established$/', $headers) === 1) {
257258
list($headers, $body) = explode("\r\n\r\n", $body, 2);
258259
}
259-
260+
260261
// Skip the first set of headers for the informal Continue header
261262
if (preg_match('/^HTTP\/1\.\d 100 Continue$/', $headers) === 1) {
262263
list($headers, $body) = explode("\r\n\r\n", $body, 2);
263264
}
264-
265265

266266
$status = (int) curl_getinfo($ch, CURLINFO_HTTP_CODE);
267267
$headers = $this->parseHeaders($headers);

src/Session.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
namespace SpotifyWebAPI;
34

45
class Session

src/SpotifyWebAPI.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?php
2+
23
namespace SpotifyWebAPI;
34

45
class SpotifyWebAPI
56
{
6-
const RETURN_ASSOC = 'assoc';
7-
const RETURN_OBJECT = 'object';
7+
public const RETURN_ASSOC = 'assoc';
8+
public const RETURN_OBJECT = 'object';
89

910
protected $accessToken = '';
1011
protected $lastResponse = [];

src/SpotifyWebAPIAuthException.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php
2+
23
namespace SpotifyWebAPI;
34

45
// Extends from SpotifyWebApiException for backwards compatibility
56
class SpotifyWebAPIAuthException extends SpotifyWebAPIException
67
{
7-
const INVALID_CLIENT = 'Invalid client';
8-
const INVALID_CLIENT_SECRET = 'Invalid client secret';
9-
const INVALID_REFRESH_TOKEN = 'Invalid refresh token';
8+
public const INVALID_CLIENT = 'Invalid client';
9+
public const INVALID_CLIENT_SECRET = 'Invalid client secret';
10+
public const INVALID_REFRESH_TOKEN = 'Invalid refresh token';
1011

1112
/**
1213
* Returns whether the exception was thrown because of invalid credentials.

src/SpotifyWebAPIException.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?php
2+
23
namespace SpotifyWebAPI;
34

45
class SpotifyWebAPIException extends \Exception
56
{
6-
const TOKEN_EXPIRED = 'The access token expired';
7-
const RATE_LIMIT_STATUS = 429;
7+
public const TOKEN_EXPIRED = 'The access token expired';
8+
public const RATE_LIMIT_STATUS = 429;
89

910
/**
1011
* The reason string from the request's error object.

0 commit comments

Comments
 (0)