Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code_samples/api/commerce/src/Command/OrderCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

use Ibexa\Contracts\Core\Repository\PermissionResolver;
use Ibexa\Contracts\Core\Repository\UserService;
use Ibexa\Contracts\CoreSearch\Values\Query\Criterion\LogicalOr;
use Ibexa\Contracts\OrderManagement\OrderServiceInterface;
use Ibexa\Contracts\OrderManagement\Value\Order\OrderQuery;
use Ibexa\Contracts\OrderManagement\Value\Order\Query\Criterion\CompanyNameCriterion;
Expand All @@ -19,7 +20,6 @@
use Ibexa\Contracts\OrderManagement\Value\OrderValue;
use Ibexa\Contracts\OrderManagement\Value\Struct\OrderCreateStruct;
use Ibexa\Contracts\OrderManagement\Value\Struct\OrderUpdateStruct;
use Ibexa\Contracts\ProductCatalog\Values\Common\Query\Criterion\LogicalOr;
use Money;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@
"ibexa/form-builder": "5.0.x-dev",
"ibexa/solr": "5.0.x-dev",
"ibexa/version-comparison": "5.0.x-dev",
"league/oauth2-google": "^4.0"
"league/oauth2-google": "^4.0",
"ibexa/core-search": "~5.0.x-dev"
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
Expand Down
2 changes: 1 addition & 1 deletion docs/commerce/order_management/order_management_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To fetch multiple orders, use the `OrderService::findOrders` method.
It follows the same search query pattern as other APIs:

``` php
[[= include_file('code_samples/api/commerce/src/Command/OrderCommand.php', 9, 13) =]][[= include_file('code_samples/api/commerce/src/Command/OrderCommand.php', 21, 22) =]]
[[= include_file('code_samples/api/commerce/src/Command/OrderCommand.php', 8, 9) =]][[= include_file('code_samples/api/commerce/src/Command/OrderCommand.php', 10, 14) =]]

// ...
[[= include_file('code_samples/api/commerce/src/Command/OrderCommand.php', 116, 125) =]]
Expand Down
Loading