Skip to content

Commit cbcd529

Browse files
committed
Remove concrete type-hint
1 parent 49aa743 commit cbcd529

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/Contracts/Generator.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
namespace Blueprint\Contracts;
44

5-
use Illuminate\Filesystem\Filesystem;
6-
75
interface Generator
86
{
9-
public function __construct(Filesystem $files);
7+
/**
8+
* @param \Illuminate\Contracts\Filesystem\Filesystem
9+
*/
10+
public function __construct($files);
1011

1112
public function output(array $tree): array;
12-
}
13+
}

0 commit comments

Comments
 (0)