Done templating

This commit is contained in:
pandeptwidyaop
2024-08-15 07:42:05 +08:00
commit 4e7639359d
23 changed files with 1743 additions and 0 deletions

19
src/Register.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
namespace MenulisAi\Pdfgen;
use MenulisAi\Pdfgen\Command\Generate;
use Symfony\Component\Console\Command\Command;
class Register
{
/**
* @return Command[] $command
*/
public function init(): array
{
return [
new Generate("generate")
];
}
}