@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | * |
| 115 | 115 | * @param string $itemIdentifier The unique item identifier |
| 116 | 116 | * @param mixed $key The key to update, or an array of key-value pairs |
| 117 | - * @param mixed $value The value to set $key to |
|
| 117 | + * @param string $value The value to set $key to |
|
| 118 | 118 | * |
| 119 | 119 | * @return void |
| 120 | 120 | */ |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | /** |
| 191 | 191 | * The total tax value for the basket. |
| 192 | 192 | * |
| 193 | - * @return float The total tax value |
|
| 193 | + * @return integer The total tax value |
|
| 194 | 194 | */ |
| 195 | 195 | public function tax() |
| 196 | 196 | { |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | /** |
| 208 | 208 | * The total weight value for the basket. |
| 209 | 209 | * |
| 210 | - * @return float The total weight value |
|
| 210 | + * @return integer The total weight value |
|
| 211 | 211 | */ |
| 212 | 212 | public function weight() |
| 213 | 213 | { |
@@ -19,7 +19,6 @@ |
||
| 19 | 19 | * |
| 20 | 20 | * @link https://github.com/lenius/basket |
| 21 | 21 | */ |
| 22 | -use Lenius\Basket\Basket; |
|
| 23 | 22 | use Lenius\Basket\Item; |
| 24 | 23 | use PHPUnit\Framework\TestCase; |
| 25 | 24 | |