From 4135ba6080089c08df1b421ec0fc7942f33ec9de Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Mon, 18 Sep 2023 19:53:48 +0800 Subject: [PATCH] wip Signed-off-by: Mior Muhammad Zaki --- storage/canvas/code.stub | 8 ------ storage/canvas/generator.stub | 51 ----------------------------------- 2 files changed, 59 deletions(-) delete mode 100644 storage/canvas/code.stub delete mode 100644 storage/canvas/generator.stub 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(), - ]; - } -}