Skip to content

Commit

Permalink
[task] #91. Fix executeList. Fix Description
Browse files Browse the repository at this point in the history
  • Loading branch information
maghamed committed Oct 1, 2017
1 parent f93b7c8 commit 60c54c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion app/code/Magento/Inventory/Indexer/IndexHandlerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ interface IndexHandlerInterface
public function saveIndex(IndexName $indexName, \Traversable $documents, string $connectionName);

/**
* Create the index i not exits or remove sku list from the index to rebuild
* Remove given documents from Index. For StockItem index we provide list of SKUs, aggregated Quantity
* for which should be re-calculated
*
* @param IndexName $indexName
* @param \Traversable $documents
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
interface IndexStructureInterface
{
/**
* Create the Index Structure if is not existing
* Create the Index Structure
*
* @param IndexName $indexName
* @param string $connectionName
Expand All @@ -24,7 +24,7 @@ interface IndexStructureInterface
public function create(IndexName $indexName, string $connectionName);

/**
* Delete the given Index from the database
* Delete the given Index
*
* @param IndexName $indexName
* @param string $connectionName
Expand All @@ -33,7 +33,7 @@ public function create(IndexName $indexName, string $connectionName);
public function delete(IndexName $indexName, string $connectionName);

/**
* Checks whether the Index exits.
* Checks whether the Index exits
*
* @param IndexName $indexName
* @param string $connectionName
Expand Down

0 comments on commit 60c54c1

Please sign in to comment.