10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
include_once __DIR__.'/vendor/autoload.php';
|
||
|
|
||
|
use App\Command\InvoiceGeneratorCommand;
|
||
|
|
||
|
$generator = new InvoiceGeneratorCommand();
|
||
|
$generator->execute();
|