@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Njasm\Soundcloud\Resource\ResourceInterface; |
6 | 6 | use Njasm\Soundcloud\UrlBuilder\UrlBuilderInterface; |
7 | - |
|
8 | 7 | use Njasm\Soundcloud\Soundcloud; |
9 | 8 | use Psr\Container\ContainerInterface; |
10 | 9 |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | /** |
71 | 71 | * Get the access token. |
72 | 72 | * |
73 | - * @return mixed the token, else null is returned |
|
73 | + * @return string|null the token, else null is returned |
|
74 | 74 | */ |
75 | 75 | public function getAuthToken() |
76 | 76 | { |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | /** |
81 | 81 | * Get the token scope. |
82 | 82 | * |
83 | - * @return mixed the scope for this access token, null if empty |
|
83 | + * @return string|null the scope for this access token, null if empty |
|
84 | 84 | */ |
85 | 85 | public function getAuthScope() |
86 | 86 | { |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | /** |
91 | 91 | * Get the token scope. |
92 | 92 | * |
93 | - * @return mixed the scope for this access token, null if empty |
|
93 | + * @return integer|null the scope for this access token, null if empty |
|
94 | 94 | */ |
95 | 95 | public function getExpires() |
96 | 96 | { |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | /** |
246 | 246 | * Get Last Curl Response object. |
247 | 247 | * |
248 | - * @return mixed The Response Object, null if no request was yet made |
|
248 | + * @return ResponseInterface|null The Response Object, null if no request was yet made |
|
249 | 249 | */ |
250 | 250 | public function getCurlResponse() |
251 | 251 | { |
@@ -6,7 +6,6 @@ |
||
6 | 6 | use Njasm\Soundcloud\Auth\AuthInterface; |
7 | 7 | use Njasm\Soundcloud\Request\Request; |
8 | 8 | use Njasm\Soundcloud\Request\RequestInterface; |
9 | - |
|
10 | 9 | use Njasm\Container\Container; |
11 | 10 | use Njasm\Soundcloud\Request\Response; |
12 | 11 | use Njasm\Soundcloud\Request\ResponseInterface; |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace Njasm\Soundcloud; |
4 | 4 | |
5 | 5 | use Njasm\Soundcloud\Resource\ResourceInterface; |
6 | - |
|
7 | 6 | use Njasm\Soundcloud\UrlBuilder\UrlBuilderInterface; |
8 | 7 | |
9 | 8 | /** |