@@ -173,7 +173,7 @@ |
||
| 173 | 173 | /** |
| 174 | 174 | * Returns the basket object for the given ID |
| 175 | 175 | * |
| 176 | - * @param string $baseId Unique order base ID |
|
| 176 | + * @param string $basketId Unique order base ID |
|
| 177 | 177 | * @return \Aimeos\MShop\Order\Item\Base\Iface Basket object including only the services |
| 178 | 178 | * @throws \Aimeos\Client\JsonApi\Exception If basket ID is not the same as stored before in the current session |
| 179 | 179 | */ |
@@ -313,6 +313,9 @@ |
||
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | |
| 316 | + /** |
|
| 317 | + * @param string $name |
|
| 318 | + */ |
|
| 316 | 319 | protected function access( $name ) |
| 317 | 320 | { |
| 318 | 321 | $class = new \ReflectionClass( '\Aimeos\Client\JsonApi\Order\Standard' ); |
@@ -268,7 +268,7 @@ |
||
| 268 | 268 | $baseManager = \Aimeos\MShop\Factory::createManager( $this->context, 'order/base' ); |
| 269 | 269 | |
| 270 | 270 | $search = $baseManager->createSearch(); |
| 271 | - $search->setConditions( $search->compare( '==', 'order.base.price', '672.00') ); |
|
| 271 | + $search->setConditions( $search->compare( '==', 'order.base.price', '672.00' ) ); |
|
| 272 | 272 | |
| 273 | 273 | $items = $baseManager->searchItems( $search ); |
| 274 | 274 | |