@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * @param string $resource The API resource to search for. |
84 | 84 | * @param array $filters Array of search criteria to use in request. |
85 | 85 | * |
86 | - * @return DataWrapperInterface|null |
|
86 | + * @return null|DataWrapper |
|
87 | 87 | * |
88 | 88 | * @throws \InvalidArgumentException Thrown if $resource is empty or not a string. |
89 | 89 | */ |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | * @param string $resource The API resource to search for. |
110 | 110 | * @param integer $id The id of the API resource. |
111 | 111 | * |
112 | - * @return DataWrapperInterface|null |
|
112 | + * @return null|DataWrapper |
|
113 | 113 | */ |
114 | 114 | final public function get(string $resource, int $id) |
115 | 115 | { |
@@ -24,7 +24,6 @@ discard block |
||
24 | 24 | * Construct a new instance of MongoCache. |
25 | 25 | * |
26 | 26 | * @param Collection $collection The collection containing the cached data. |
27 | - * @param integer $defaultTimeToLive The default time to live in seconds. |
|
28 | 27 | */ |
29 | 28 | public function __construct(Collection $collection) |
30 | 29 | { |
@@ -240,7 +239,6 @@ discard block |
||
240 | 239 | /** |
241 | 240 | * Converts the given time to live value to a UTCDateTime instance; |
242 | 241 | * |
243 | - * @param mixed $key The cache key to validate. |
|
244 | 242 | * |
245 | 243 | * @return UTCDateTime |
246 | 244 | * |
@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace Chadicus\Marvel\Api\Cache; |
4 | 4 | |
5 | -use DominionEnterprises\Util\Arrays; |
|
6 | 5 | use GuzzleHttp\Psr7\Response; |
7 | 6 | use MongoDB\BSON\UTCDateTime; |
8 | 7 | use Psr\Http\Message\ResponseInterface; |
@@ -182,7 +182,7 @@ |
||
182 | 182 | * |
183 | 183 | * @param mixed $ttl The time-to-live value to validate. |
184 | 184 | * |
185 | - * @return void |
|
185 | + * @return integer |
|
186 | 186 | * |
187 | 187 | * @throws InvalidArgumentException Thrown if the $ttl is not null, an integer or \DateInterval. |
188 | 188 | */ |