We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc91ecb commit c83c9a2Copy full SHA for c83c9a2
code_samples/back_office/search/src/Query/SymbolAttributeTypeQuery.php
@@ -1,9 +1,9 @@
1
-<?php
+<?php declare(strict_types=1);
2
3
use Ibexa\Contracts\ProductCatalog\Values\Product\ProductQuery;
4
use Ibexa\Contracts\ProductCatalogSymbolAttribute\Search\Criterion\SymbolAttribute;
5
6
$query = new ProductQuery();
7
$query->setFilter(new SymbolAttribute('ean', ['5023920187205']));
8
-/** @var \Ibexa\Contracts\ProductCatalog\ProductServiceInterface $productService*/
9
-$results = $productService->findProducts($query);
+/** @var \Ibexa\Contracts\ProductCatalog\ProductServiceInterface $productService */
+$results = $productService->findProducts($query);
0 commit comments