Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 60% |
Changes | 0 |
1 | <?php |
||
8 | class MigrationCreator extends IlluminateMigrationCreator |
||
9 | { |
||
10 | /** |
||
11 | * Create a new migration creator instance. |
||
12 | * |
||
13 | * @param Filesystem $files |
||
14 | * @param string $customStubPath |
||
15 | */ |
||
16 | 207 | public function __construct(Filesystem $files, $customStubPath) |
|
17 | { |
||
18 | 207 | $this->files = $files; |
|
19 | 207 | $this->customStubPath = $customStubPath; |
|
20 | } |
||
21 | |||
22 | /** |
||
23 | * Get the path to the stubs. |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | public function stubPath() |
||
30 | } |
||
31 | } |
||
32 |