| @@ -11,7 +11,6 @@ | ||
| 11 | 11 | namespace DirkGroenen\Pinterest\Transport; | 
| 12 | 12 | |
| 13 | 13 | use DirkGroenen\Pinterest\Utils\CurlBuilder; | 
| 14 | -use DirkGroenen\Pinterest\Exceptions\PinterestException; | |
| 15 | 14 | |
| 16 | 15 |  class Response { | 
| 17 | 16 | |
| @@ -1,12 +1,12 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | /** | 
| 3 | - * Copyright 2015 Dirk Groenen | |
| 4 | - * | |
| 5 | - * (c) Dirk Groenen <[email protected]> | |
| 6 | - * | |
| 7 | - * For the full copyright and license information, please view the LICENSE | |
| 8 | - * file that was distributed with this source code. | |
| 9 | - */ | |
| 3 | + * Copyright 2015 Dirk Groenen | |
| 4 | + * | |
| 5 | + * (c) Dirk Groenen <[email protected]> | |
| 6 | + * | |
| 7 | + * For the full copyright and license information, please view the LICENSE | |
| 8 | + * file that was distributed with this source code. | |
| 9 | + */ | |
| 10 | 10 | |
| 11 | 11 | namespace DirkGroenen\Pinterest\Endpoints; | 
| 12 | 12 | |
| @@ -44,15 +44,15 @@ discard block | ||
| 44 | 44 | * @param array|Transport\Response $modeldata | 
| 45 | 45 | * @return void | 
| 46 | 46 | */ | 
| 47 | - public function __construct( Pinterest $master, $modeldata = null ) | |
| 47 | + public function __construct(Pinterest $master, $modeldata = null) | |
| 48 | 48 |      {    | 
| 49 | 49 | $this->master = $master; | 
| 50 | 50 | |
| 51 | 51 | // Fill the model | 
| 52 | -        if( is_array($modeldata) ){ | |
| 52 | +        if (is_array($modeldata)) { | |
| 53 | 53 | $this->fill($modeldata); | 
| 54 | 54 | } | 
| 55 | -        else if( $modeldata instanceof \DirkGroenen\Pinterest\Transport\Response ){ | |
| 55 | +        else if ($modeldata instanceof \DirkGroenen\Pinterest\Transport\Response) { | |
| 56 | 56 | $this->fill($modeldata->data); | 
| 57 | 57 | } | 
| 58 | 58 | } | 
| @@ -80,11 +80,11 @@ discard block | ||
| 80 | 80 | */ | 
| 81 | 81 | public function __set($key, $value) | 
| 82 | 82 |      { | 
| 83 | -        if($this->isFillable($key)){ | |
| 83 | +        if ($this->isFillable($key)) { | |
| 84 | 84 | $this->attributes[$key] = $value; | 
| 85 | 85 | } | 
| 86 | -        else{ | |
| 87 | -            throw new PinterestException( sprintf("%s is not a fillable attribute.", $key) ); | |
| 86 | +        else { | |
| 87 | +            throw new PinterestException(sprintf("%s is not a fillable attribute.", $key)); | |
| 88 | 88 | } | 
| 89 | 89 | } | 
| 90 | 90 | |
| @@ -108,8 +108,8 @@ discard block | ||
| 108 | 108 | */ | 
| 109 | 109 | private function fill(array $attributes) | 
| 110 | 110 |      { | 
| 111 | -        foreach($attributes as $key => $value){ | |
| 112 | -            if($this->isFillable($key)){ | |
| 111 | +        foreach ($attributes as $key => $value) { | |
| 112 | +            if ($this->isFillable($key)) { | |
| 113 | 113 | $this->attributes[$key] = $value; | 
| 114 | 114 | } | 
| 115 | 115 | } | 
| @@ -137,7 +137,7 @@ discard block | ||
| 137 | 137 |      { | 
| 138 | 138 | $array = array(); | 
| 139 | 139 | |
| 140 | -        foreach($this->fillable as $key){ | |
| 140 | +        foreach ($this->fillable as $key) { | |
| 141 | 141 |              $array[$key] = $this->{$key}; | 
| 142 | 142 | } | 
| 143 | 143 | |
| @@ -51,8 +51,7 @@ discard block | ||
| 51 | 51 | // Fill the model | 
| 52 | 52 |          if( is_array($modeldata) ){ | 
| 53 | 53 | $this->fill($modeldata); | 
| 54 | - } | |
| 55 | -        else if( $modeldata instanceof \DirkGroenen\Pinterest\Transport\Response ){ | |
| 54 | +        } else if( $modeldata instanceof \DirkGroenen\Pinterest\Transport\Response ){ | |
| 56 | 55 | $this->fill($modeldata->data); | 
| 57 | 56 | } | 
| 58 | 57 | } | 
| @@ -82,8 +81,7 @@ discard block | ||
| 82 | 81 |      { | 
| 83 | 82 |          if($this->isFillable($key)){ | 
| 84 | 83 | $this->attributes[$key] = $value; | 
| 85 | - } | |
| 86 | -        else{ | |
| 84 | +        } else{ | |
| 87 | 85 |              throw new PinterestException( sprintf("%s is not a fillable attribute.", $key) ); | 
| 88 | 86 | } | 
| 89 | 87 | } | 
| @@ -1,12 +1,12 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | /** | 
| 3 | - * Copyright 2015 Dirk Groenen | |
| 4 | - * | |
| 5 | - * (c) Dirk Groenen <[email protected]> | |
| 6 | - * | |
| 7 | - * For the full copyright and license information, please view the LICENSE | |
| 8 | - * file that was distributed with this source code. | |
| 9 | - */ | |
| 3 | + * Copyright 2015 Dirk Groenen | |
| 4 | + * | |
| 5 | + * (c) Dirk Groenen <[email protected]> | |
| 6 | + * | |
| 7 | + * For the full copyright and license information, please view the LICENSE | |
| 8 | + * file that was distributed with this source code. | |
| 9 | + */ | |
| 10 | 10 | |
| 11 | 11 | namespace DirkGroenen\Pinterest\Endpoints; | 
| 12 | 12 | |
| @@ -11,7 +11,6 @@ | ||
| 11 | 11 | namespace DirkGroenen\Pinterest\Transport; | 
| 12 | 12 | |
| 13 | 13 | use DirkGroenen\Pinterest\Utils\CurlBuilder; | 
| 14 | -use DirkGroenen\Pinterest\Exceptions\PinterestException; | |
| 15 | 14 | |
| 16 | 15 |  class Response { | 
| 17 | 16 | |
| @@ -127,7 +127,7 @@ | ||
| 127 | 127 | * Change the code for an access_token | 
| 128 | 128 | * | 
| 129 | 129 | * @param string $code | 
| 130 | - * @return array | |
| 130 | + * @return \DirkGroenen\Pinterest\Transport\Response | |
| 131 | 131 | */ | 
| 132 | 132 | public function getOAuthToken($code) | 
| 133 | 133 |      { | 
| @@ -1,12 +1,12 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | /** | 
| 3 | - * Copyright 2015 Dirk Groenen | |
| 4 | - * | |
| 5 | - * (c) Dirk Groenen <[email protected]> | |
| 6 | - * | |
| 7 | - * For the full copyright and license information, please view the LICENSE | |
| 8 | - * file that was distributed with this source code. | |
| 9 | - */ | |
| 3 | + * Copyright 2015 Dirk Groenen | |
| 4 | + * | |
| 5 | + * (c) Dirk Groenen <[email protected]> | |
| 6 | + * | |
| 7 | + * For the full copyright and license information, please view the LICENSE | |
| 8 | + * file that was distributed with this source code. | |
| 9 | + */ | |
| 10 | 10 | |
| 11 | 11 | namespace DirkGroenen\Pinterest\Endpoints; | 
| 12 | 12 | |
| @@ -1,12 +1,12 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | /** | 
| 3 | - * Copyright 2015 Dirk Groenen | |
| 4 | - * | |
| 5 | - * (c) Dirk Groenen <[email protected]> | |
| 6 | - * | |
| 7 | - * For the full copyright and license information, please view the LICENSE | |
| 8 | - * file that was distributed with this source code. | |
| 9 | - */ | |
| 3 | + * Copyright 2015 Dirk Groenen | |
| 4 | + * | |
| 5 | + * (c) Dirk Groenen <[email protected]> | |
| 6 | + * | |
| 7 | + * For the full copyright and license information, please view the LICENSE | |
| 8 | + * file that was distributed with this source code. | |
| 9 | + */ | |
| 10 | 10 | |
| 11 | 11 | namespace DirkGroenen\Pinterest\Endpoints; | 
| 12 | 12 | |
| @@ -1,12 +1,12 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | /** | 
| 3 | - * Copyright 2015 Dirk Groenen | |
| 4 | - * | |
| 5 | - * (c) Dirk Groenen <[email protected]> | |
| 6 | - * | |
| 7 | - * For the full copyright and license information, please view the LICENSE | |
| 8 | - * file that was distributed with this source code. | |
| 9 | - */ | |
| 3 | + * Copyright 2015 Dirk Groenen | |
| 4 | + * | |
| 5 | + * (c) Dirk Groenen <[email protected]> | |
| 6 | + * | |
| 7 | + * For the full copyright and license information, please view the LICENSE | |
| 8 | + * file that was distributed with this source code. | |
| 9 | + */ | |
| 10 | 10 | |
| 11 | 11 | namespace DirkGroenen\Pinterest\Endpoints; | 
| 12 | 12 | |
| @@ -1,12 +1,12 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | /** | 
| 3 | - * Copyright 2015 Dirk Groenen | |
| 4 | - * | |
| 5 | - * (c) Dirk Groenen <[email protected]> | |
| 6 | - * | |
| 7 | - * For the full copyright and license information, please view the LICENSE | |
| 8 | - * file that was distributed with this source code. | |
| 9 | - */ | |
| 3 | + * Copyright 2015 Dirk Groenen | |
| 4 | + * | |
| 5 | + * (c) Dirk Groenen <[email protected]> | |
| 6 | + * | |
| 7 | + * For the full copyright and license information, please view the LICENSE | |
| 8 | + * file that was distributed with this source code. | |
| 9 | + */ | |
| 10 | 10 | |
| 11 | 11 | namespace DirkGroenen\Pinterest\Endpoints; | 
| 12 | 12 | |