![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/vendor/orchestra/canvas/src/Commands/ |
<?php namespace Orchestra\Canvas\Commands; use Illuminate\Console\Concerns\CreatesMatchingTest; use Illuminate\Support\Str; use Orchestra\Canvas\Core\GeneratesCodeWithMarkdown; use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Console\Input\InputOption; /** * @see https://github.com/laravel/framework/blob/10.x/src/Illuminate/Foundation/Console/MailMakeCommand.php */ #[AsCommand(name: 'make:mail', description: 'Create a new email class')] class Mail extends Generator { use CreatesMatchingTest; /** * The type of class being generated. * * @var string */ protected string $type = 'Mailable'; /** * Generator processor. * * @var class-string<\Orchestra\Canvas\Core\GeneratesCode> */ protected string $processor = GeneratesCodeWithMarkdown::class; /** * Run after code successfully generated. */ public function afterCodeHasBeenGenerated(string $className, string $path): void { if ($this->option('markdown') !== false) { $this->writeMarkdownTemplate(); } parent::afterCodeHasBeenGenerated($className, $path); } /** * Get the stub file name for the generator. */ public function getStubFileName(): string { return $this->option('markdown') ? 'markdown-mail.stub' : 'mail.stub'; } /** * Get the default namespace for the class. */ public function getDefaultNamespace(string $rootNamespace): string { return $rootNamespace.'\Mail'; } /** * Generator options. * * @return array<string, mixed> */ public function generatorOptions(): array { return [ 'markdown' => $this->option('markdown') ?? null, 'view' => $this->componentView(), 'force' => $this->option('force'), ]; } /** * Write the Markdown template for the mailable. */ protected function writeMarkdownTemplate(): void { $path = $this->preset->resourcePath().'/views/'.str_replace('.', '/', $this->componentView()).'.blade.php'; if (! $this->files->isDirectory(\dirname($path))) { $this->files->makeDirectory(\dirname($path), 0755, true); } $this->files->put($path, (string) file_get_contents(__DIR__.'/../../storage/laravel/markdown.stub')); } /** * Get the view name. * * @return string */ protected function componentView(): string { /** @var string|null $view */ $view = $this->option('markdown'); if (! $view) { /** @var string $name */ $name = $this->argument('name'); $view = 'mail.'.Str::kebab(class_basename($name)); } return $view; } /** * Get the console command options. * * @return array<int, array> */ protected function getOptions() { return [ ['force', 'f', InputOption::VALUE_NONE, 'Create the class even if the mailable already exists'], ['markdown', 'm', InputOption::VALUE_OPTIONAL, 'Create a new Markdown template for the mailable', false], ]; } }