Skip to content

Commit

Permalink
🔃 [EngCom] Public Pull Requests - 2.3-develop
Browse files Browse the repository at this point in the history
Accepted Public Pull Requests:
 - #13374: Edited doc block of the walk method in a Collection (by @ByteCreation)
 - #13303: Remove redundant code for clarity (by @akiojalehto)
  • Loading branch information
Oleksii Korshenko authored Jan 31, 2018
2 parents 8c705bf + 4591b7b commit 3c6f5b0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions app/code/Magento/AdminNotification/Model/Feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,6 @@ public function getFeedData()
);
$curl->write(\Zend_Http_Client::GET, $this->getFeedUrl(), '1.0');
$data = $curl->read();
if ($data === false) {
return false;
}
$data = preg_split('/^\r?$/m', $data, 2);
$data = trim($data[1]);
$curl->close();
Expand Down
2 changes: 1 addition & 1 deletion lib/internal/Magento/Framework/Data/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ public function clear()
*
* Returns array with results of callback for each item
*
* @param string $callback
* @param callable $callback
* @param array $args
* @return array
*/
Expand Down

0 comments on commit 3c6f5b0

Please sign in to comment.