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