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