File manager - Edit - /var/www/payraty/hris/vendor/nwidart/laravel-modules/src/Commands/Make/ExceptionMakeCommand.php
Back
<?php namespace Nwidart\Modules\Commands\Make; use Illuminate\Support\Str; use Nwidart\Modules\Support\Config\GenerateConfigReader; use Nwidart\Modules\Support\Stub; use Nwidart\Modules\Traits\ModuleCommandTrait; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputOption; class ExceptionMakeCommand extends GeneratorCommand { use ModuleCommandTrait; protected $argumentName = 'name'; protected $name = 'module:make-exception'; protected $description = 'Create a new exception class for the specified module.'; public function getDestinationFilePath(): string { $path = $this->laravel['modules']->getModulePath($this->getModuleName()); $filePath = GenerateConfigReader::read('exceptions')->getPath() ?? config('modules.paths.app_folder').'Exceptions'; return $path.$filePath.'/'.$this->getExceptionName().'.php'; } protected function getTemplateContents(): string { $module = $this->laravel['modules']->findOrFail($this->getModuleName()); return (new Stub($this->getStubName(), [ 'CLASS_NAMESPACE' => $this->getClassNamespace($module), 'CLASS' => $this->getClassNameWithoutNamespace(), ]))->render(); } protected function getArguments(): array { return [ ['name', InputArgument::REQUIRED, 'The name of the action class.'], ['module', InputArgument::OPTIONAL, 'The name of module will be used.'], ]; } protected function getOptions(): array { return [ ['render', '', InputOption::VALUE_NONE, 'Create the exception with an empty render method', null], ['report', '', InputOption::VALUE_NONE, 'Create the exception with an empty report method', null], ['force', 'f', InputOption::VALUE_NONE, 'su.'], ]; } protected function getExceptionName(): array|string { return Str::studly($this->argument('name')); } private function getClassNameWithoutNamespace(): array|string { return class_basename($this->getExceptionName()); } public function getDefaultNamespace(): string { return config('modules.paths.generator.exceptions.namespace', 'Exceptions'); } protected function getStubName(): string { if ($this->option('render')) { return $this->option('report') ? '/exception-render-report.stub' : '/exception-render.stub'; } return $this->option('report') ? '/exception-report.stub' : '/exception.stub'; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings