Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix MockDownloadHandler for empty downloads
  • Loading branch information
grzeg1 committed Jan 10, 2018
1 parent e502d66 commit 5718d27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ouzo/Core/Tests/MockDownloadHandler.php
Expand Up @@ -10,9 +10,9 @@


class MockDownloadHandler class MockDownloadHandler
{ {
private $fileData; private $fileData = [];


public function downloadFile($fileData) public function downloadFile(array $fileData)
{ {
$this->fileData = $fileData; $this->fileData = $fileData;
return $this; return $this;
Expand Down

0 comments on commit 5718d27

Please sign in to comment.