Skip to content

Commit 0e92b98

Browse files
author
Andrey Konosov
committed
Merge commit 'refs/pull/1420/head' of https://github.com/magento/magento2 into MX_GITHUB
2 parents 33b0379 + cbc85da commit 0e92b98

File tree

37 files changed

+41
-40
lines changed

37 files changed

+41
-40
lines changed

app/code/Magento/Catalog/Api/Data/CategoryAttributeSearchResultsInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ public function getItems();
2424
* @param \Magento\Catalog\Api\Data\CategoryAttributeInterface[] $items
2525
* @return $this
2626
*/
27-
public function setItems(array $items = null);
27+
public function setItems(array $items);
2828
}

app/code/Magento/Catalog/Api/Data/ProductAttributeSearchResultsInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ public function getItems();
2424
* @param \Magento\Catalog\Api\Data\ProductAttributeInterface[] $items
2525
* @return $this
2626
*/
27-
public function setItems(array $items = null);
27+
public function setItems(array $items);
2828
}

app/code/Magento/Catalog/Api/Data/ProductSearchResultsInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ public function getItems();
2424
* @param \Magento\Catalog\Api\Data\ProductInterface[] $items
2525
* @return $this
2626
*/
27-
public function setItems(array $items = null);
27+
public function setItems(array $items);
2828
}

app/code/Magento/CatalogInventory/Api/Data/StockCollectionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ public function getItems();
3030
* @param \Magento\CatalogInventory\Api\Data\StockInterface[] $items
3131
* @return $this
3232
*/
33-
public function setItems(array $items = null);
33+
public function setItems(array $items);
3434
}

app/code/Magento/CatalogInventory/Api/Data/StockItemCollectionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function getItems();
3030
* @param \Magento\CatalogInventory\Api\Data\StockItemInterface[] $items
3131
* @return $this
3232
*/
33-
public function setItems(array $items = null);
33+
public function setItems(array $items);
3434

3535
/**
3636
* Get search criteria.

app/code/Magento/CatalogInventory/Api/Data/StockStatusCollectionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function getItems();
2727
* @param \Magento\CatalogInventory\Api\Data\StockStatusInterface[] $items
2828
* @return $this
2929
*/
30-
public function setItems(array $items = null);
30+
public function setItems(array $items);
3131

3232
/**
3333
* Get search criteria.

app/code/Magento/Cms/Api/Data/BlockSearchResultsInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ public function getItems();
2626
* @param \Magento\Cms\Api\Data\BlockInterface[] $items
2727
* @return $this
2828
*/
29-
public function setItems(array $items = null);
29+
public function setItems(array $items);
3030
}

app/code/Magento/Cms/Api/Data/PageSearchResultsInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ public function getItems();
2626
* @param \Magento\Cms\Api\Data\PageInterface[] $items
2727
* @return $this
2828
*/
29-
public function setItems(array $items = null);
29+
public function setItems(array $items);
3030
}

app/code/Magento/Customer/Api/Data/AddressSearchResultsInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ public function getItems();
2626
* @param \Magento\Customer\Api\Data\AddressInterface[] $items
2727
* @return $this
2828
*/
29-
public function setItems(array $items = null);
29+
public function setItems(array $items);
3030
}

app/code/Magento/Customer/Api/Data/CustomerSearchResultsInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ public function getItems();
2626
* @param \Magento\Customer\Api\Data\CustomerInterface[] $items
2727
* @return $this
2828
*/
29-
public function setItems(array $items = null);
29+
public function setItems(array $items);
3030
}

0 commit comments

Comments
 (0)