Skip to content

Commit

Permalink
Solved issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitor-Corrales committed Jun 27, 2023
1 parent 98d190c commit e5121fb
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
14 changes: 7 additions & 7 deletions ApiClient/ManagementClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function __construct(
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function listSearchEngines(): array
{
Expand Down Expand Up @@ -72,7 +72,7 @@ public function createStore(array $storeData): array
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function createSearchEngine(array $searchEngine): array
{
Expand All @@ -96,7 +96,7 @@ public function createSearchEngine(array $searchEngine): array
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function processSearchEngine(string $hashId, string $callbackUrl = null): array
{
Expand All @@ -119,7 +119,7 @@ public function processSearchEngine(string $hashId, string $callbackUrl = null):
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function getSearchEngine(string $hashid): array
{
Expand All @@ -143,7 +143,7 @@ public function getSearchEngine(string $hashid): array
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function createItemsInBulk(array $items, string $hashId, string $indice)
{
Expand All @@ -167,7 +167,7 @@ public function createItemsInBulk(array $items, string $hashId, string $indice)
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function updateItemsInBulk(array $items, string $hashId, string $indice)
{
Expand All @@ -192,7 +192,7 @@ public function updateItemsInBulk(array $items, string $hashId, string $indice)
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function deleteItemsInBulk(array $items, string $hashId, string $indice)
{
Expand Down
6 changes: 3 additions & 3 deletions Helper/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function __construct(
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
* @throws NoSuchEntityException
*/
public function createItemsInBulk(array $items, StoreInterface $store, string $indice)
Expand All @@ -84,7 +84,7 @@ public function createItemsInBulk(array $items, StoreInterface $store, string $i
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
* @throws NoSuchEntityException
*/
public function updateItemsInBulk(array $items, StoreInterface $store, string $indice)
Expand All @@ -106,7 +106,7 @@ public function updateItemsInBulk(array $items, StoreInterface $store, string $i
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
* @throws NoSuchEntityException
*/
public function deleteItemsInBulk(array $items, StoreInterface $store, string $indice)
Expand Down
8 changes: 4 additions & 4 deletions Helper/SearchEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class SearchEngine extends AbstractHelper
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function __construct(
ManagementClientFactory $managementClientFactory,
Expand Down Expand Up @@ -86,7 +86,7 @@ public function __construct(
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function listSearchEngines(): array
{
Expand All @@ -112,7 +112,7 @@ public function listSearchEngines(): array
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function createSearchEngine(array $searchEngine): array
{
Expand All @@ -139,7 +139,7 @@ public function createSearchEngine(array $searchEngine): array
* @throws ThrottledResponse
* @throws TypeAlreadyExists
* @throws WrongResponse
* @throws \Zend_Json_Exception
* @throws \Exception
*/
public function processSearchEngine(string $hashId, string $callbackUrl = null): array
{
Expand Down
2 changes: 1 addition & 1 deletion Model/ChangedItem/ItemType.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ public static function getList() {
self::CATEGORY => self::CATEGORY_INDICE
];
}
}
}
2 changes: 1 addition & 1 deletion Model/ResourceModel/ChangedItem/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Doofinder\Feed\Model\ResourceModel\ChangedItem as ChangedItemResourceModel;

/**
* Collection of deleted product traces.
* Collection of changed items.
*/
class Collection extends AbstractCollection
{
Expand Down

0 comments on commit e5121fb

Please sign in to comment.