bilingual-invoice-generator/generate

10 lines
181 B
Plaintext
Raw Normal View History

2020-01-31 01:04:13 +00:00
#!/usr/bin/env php
<?php
include_once __DIR__.'/vendor/autoload.php';
use App\Command\InvoiceGeneratorCommand;
$generator = new InvoiceGeneratorCommand();
$generator->execute();