@@ -15,11 +15,9 @@ |
||
| 15 | 15 | $pinterest->auth->setOAuthToken($token->access_token); |
| 16 | 16 | |
| 17 | 17 | setcookie("access_token", $token->access_token); |
| 18 | - } |
|
| 19 | - else if (isset($_GET["access_token"])) { |
|
| 18 | + } else if (isset($_GET["access_token"])) { |
|
| 20 | 19 | $pinterest->auth->setOAuthToken($_GET["access_token"]); |
| 21 | - } |
|
| 22 | - else if (isset($_COOKIE["access_token"])) { |
|
| 20 | + } else if (isset($_COOKIE["access_token"])) { |
|
| 23 | 21 | $pinterest->auth->setOAuthToken($_COOKIE["access_token"]); |
| 24 | 22 | } |
| 25 | 23 | |
@@ -50,8 +50,7 @@ |
||
| 50 | 50 | // Fill the model |
| 51 | 51 | if (is_array($modeldata)) { |
| 52 | 52 | $this->fill($modeldata); |
| 53 | - } |
|
| 54 | - else if ($modeldata instanceof \DirkGroenen\Pinterest\Transport\Response) { |
|
| 53 | + } else if ($modeldata instanceof \DirkGroenen\Pinterest\Transport\Response) { |
|
| 55 | 54 | $this->fill($modeldata->data); |
| 56 | 55 | } |
| 57 | 56 | } |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | * Based on the standard PSR-4 autoloader: |
| 10 | 10 | * https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader-examples.md |
| 11 | 11 | */ |
| 12 | -spl_autoload_register(function ($class) { |
|
| 12 | +spl_autoload_register(function($class) { |
|
| 13 | 13 | |
| 14 | 14 | // project-specific namespace prefix |
| 15 | 15 | $prefix = 'DirkGroenen\\Pinterest\\'; |