@@ -20,7 +20,6 @@ |
||
20 | 20 | namespace Doctrine\Common\Cache; |
21 | 21 | |
22 | 22 | use Riak\Bucket; |
23 | -use Riak\Connection; |
|
24 | 23 | use Riak\Input; |
25 | 24 | use Riak\Exception; |
26 | 25 | use Riak\Object; |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | /** |
157 | 157 | * Find a single row by ID. |
158 | 158 | * |
159 | - * @param mixed $id |
|
159 | + * @param string $id |
|
160 | 160 | * @param bool $includeData |
161 | 161 | * |
162 | 162 | * @return array|null |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | /** |
198 | 198 | * Gets an array of the fields in our table. |
199 | 199 | * |
200 | - * @return array |
|
200 | + * @return string[] |
|
201 | 201 | */ |
202 | 202 | private function getFields() |
203 | 203 | { |
@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace Doctrine\Tests\Common\Cache; |
4 | 4 | |
5 | -use Doctrine\Common\Cache\ApcCache; |
|
6 | 5 | use Doctrine\Common\Cache\ArrayCache; |
7 | 6 | use Doctrine\Common\Cache\ChainCache; |
8 | 7 |