JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrlaravel['modules']->getModulePath($this->getModuleName()); $filePath = GenerateConfigReader::read('actions')->getPath() ?? config('modules.paths.app_folder').'Actions'; return $path.$filePath.'/'.$this->getActionName().'.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 [ ['invokable', 'i', InputOption::VALUE_NONE, 'Generate an invokable action class', null], ['force', 'f', InputOption::VALUE_NONE, 'su.'], ]; } protected function getActionName(): array|string { return Str::studly($this->argument('name')); } private function getClassNameWithoutNamespace(): array|string { return class_basename($this->getActionName()); } public function getDefaultNamespace(): string { return config('modules.paths.generator.actions.namespace', 'Actions'); } protected function getStubName(): string { return $this->option('invokable') === true ? '/action-invoke.stub' : '/action.stub'; } }