src/Console/HelpersMakeCommand.php
<?php namespace ArtemSchander\L5Modular\Console; use ArtemSchander\L5Modular\Traits\MakesComponent;use Illuminate\Console\GeneratorCommand; class HelpersMakeCommand extends GeneratorCommand{ use MakesComponent; /** * The console command name. * * @var string */ protected $name = 'make:module:helpers'; /** * The console command description. * * @var string */ protected $description = 'Create a new helpers file in a module'; /** * The type of component being generated. * * @var string */ protected $type = 'Helpers file'; /** * The key of the component to be generated. */ const KEY = 'helpers'; /** * The cli info that will be shown on --help. */ const MODULE_OPTION_INFO = 'Generate a helpers file in a certain module'; /** * Build the class with the given name. * * @param string $name * @return string */ protected function buildClass($name) { return str_replace('DummyModuleName', $this->module, parent::buildClass($name)); } /** * This generator does not accept a name input * therefor this method returns a hardcoded value * * @return string */ protected function getNameInput() { return 'helpers'; } /** * Get the stub file for the generator. * * @codeCoverageIgnore * @return string */ protected function getStub() { return __DIR__.'/stubs/helpers.stub'; } /** * Get the console command arguments. * * @return array */ protected function getArguments() { return []; }}