File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,12 +64,12 @@ protected function clean(): void
6464
6565 protected function open (string $ filename ): string
6666 {
67- return file_get_contents ($ this ->oldPath ($ filename ));
67+ return file_get_contents ($ this ->oldPath ($ filename . ' .php ' ));
6868 }
6969
7070 protected function store (string $ filename , string $ content ): void
7171 {
72- File::store ($ this ->newPath ($ filename ), $ content );
72+ File::store ($ this ->newPath ($ filename . ' .php ' ), $ content );
7373 }
7474
7575 protected function replaceNamespace (string $ content ): string
@@ -145,9 +145,9 @@ protected function callMigration(): void
145145 : __DIR__ . '/../../database/migrations/named/2022_08_18_180137_change_migration_actions_table.php ' ;
146146
147147 $ this ->artisan ('migrate ' , [
148- '--path ' => $ path ,
148+ '--path ' => $ path ,
149149 '--realpath ' => true ,
150- '--force ' => true ,
150+ '--force ' => true ,
151151 ]);
152152 });
153153 }
You can’t perform that action at this time.
0 commit comments