diff --git a/storage/canvas/code.stub b/storage/canvas/code.stub deleted file mode 100644 index daae325..0000000 --- a/storage/canvas/code.stub +++ /dev/null @@ -1,8 +0,0 @@ - - */ - protected string $processor = GeneratesCode::class; - - /** - * Get the stub file name for the generator. - */ - public function getStubFileName(): string - { - // Implement path to stub file. - } - - /** - * Get the default namespace for the class. - */ - public function getDefaultNamespace(string $rootNamespace): string - { - return $rootNamespace; - } - - /** - * Generator options. - */ - public function generatorOptions(): array - { - return [ - 'name' => $this->generatorName(), - ]; - } -}