Files
genpdf/src/Register.php
pandeptwidyaop f03abc8ac8 dev
2024-08-19 18:16:03 +08:00

22 lines
409 B
PHP

<?php
namespace MenulisAi\Pdfgen;
use MenulisAi\Pdfgen\Command\GenerateEbook;
use MenulisAi\Pdfgen\Command\GenerateTest;
use Symfony\Component\Console\Command\Command;
class Register
{
/**
* @return Command[] $command
*/
public function init(): array
{
return [
new GenerateEbook("generate:ebook"),
new GenerateTest("generate:test")
];
}
}