Skip to content

Commit 05febd4

Browse files
committed
Fix paths to stub files in console commands
1 parent 65cda24 commit 05febd4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Console/MakeCollectionCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class MakeCollectionCommand extends BaseGeneratorCommand
2626
*/
2727
protected function getStub()
2828
{
29-
return __DIR__.'/../../stubs/collection.stub';
29+
return __DIR__.'/../../stubs/Collection.stub';
3030
}
3131

3232
/**

src/Console/MakeFieldsetCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class MakeFieldsetCommand extends BaseGeneratorCommand
2626
*/
2727
protected function getStub()
2828
{
29-
return __DIR__.'/../../stubs/fieldset.stub';
29+
return __DIR__.'/../../stubs/Fieldset.stub';
3030
}
3131

3232
/**

src/Console/MakeGlobalSetCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class MakeGlobalSetCommand extends BaseGeneratorCommand
2626
*/
2727
protected function getStub()
2828
{
29-
return __DIR__.'/../../stubs/global-set.stub';
29+
return __DIR__.'/../../stubs/Global-Set.stub';
3030
}
3131

3232
/**

src/Console/MakeTaxonomyCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class MakeTaxonomyCommand extends BaseGeneratorCommand
2626
*/
2727
protected function getStub()
2828
{
29-
return __DIR__.'/../../stubs/taxonomy.stub';
29+
return __DIR__.'/../../stubs/Taxonomy.stub';
3030
}
3131

3232
/**

0 commit comments

Comments
 (0)