This commit is contained in:
pandeptwidyaop
2024-08-19 18:16:03 +08:00
parent d89900ba25
commit f03abc8ac8
34 changed files with 5280 additions and 22 deletions

View File

@@ -2,7 +2,8 @@
namespace MenulisAi\Pdfgen;
use MenulisAi\Pdfgen\Command\Generate;
use MenulisAi\Pdfgen\Command\GenerateEbook;
use MenulisAi\Pdfgen\Command\GenerateTest;
use Symfony\Component\Console\Command\Command;
class Register
@@ -13,7 +14,8 @@ class Register
public function init(): array
{
return [
new Generate("generate:ebook")
new GenerateEbook("generate:ebook"),
new GenerateTest("generate:test")
];
}
}