Skip to content

Commit

Permalink
Remove concrete type-hint
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmccreary committed Nov 7, 2019
1 parent 49aa743 commit cbcd529
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/Contracts/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

namespace Blueprint\Contracts;

use Illuminate\Filesystem\Filesystem;

interface Generator
{
public function __construct(Filesystem $files);
/**
* @param \Illuminate\Contracts\Filesystem\Filesystem
*/
public function __construct($files);

public function output(array $tree): array;
}
}

0 comments on commit cbcd529

Please sign in to comment.