CLI
This commit is contained in:
2
cli/resources/commands/comunas.php
Normal file
2
cli/resources/commands/comunas.php
Normal file
@ -0,0 +1,2 @@
|
||||
<?php
|
||||
$app->add($app->getContainer()->get(Incoviba\Command\Comunas::class));
|
3
cli/resources/commands/money.php
Normal file
3
cli/resources/commands/money.php
Normal file
@ -0,0 +1,3 @@
|
||||
<?php
|
||||
$app->add($app->getContainer()->get(Incoviba\Command\Money\UF::class));
|
||||
$app->add($app->getContainer()->get(Incoviba\Command\Money\IPC::class));
|
9
cli/resources/commands/proyectos.php
Normal file
9
cli/resources/commands/proyectos.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
$folder = implode(DIRECTORY_SEPARATOR, [__DIR__, 'proyectos']);
|
||||
$files = new FilesystemIterator($folder);
|
||||
foreach ($files as $file) {
|
||||
if ($file->isDir()) {
|
||||
continue;
|
||||
}
|
||||
include_once $file->getRealPath();
|
||||
}
|
2
cli/resources/commands/proyectos/activos.php
Normal file
2
cli/resources/commands/proyectos/activos.php
Normal file
@ -0,0 +1,2 @@
|
||||
<?php
|
||||
$app->add($app->getContainer()->get(Incoviba\Command\Proyectos\Activos::class));
|
9
cli/resources/commands/ventas.php
Normal file
9
cli/resources/commands/ventas.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
$folder = implode(DIRECTORY_SEPARATOR, [__DIR__, 'ventas']);
|
||||
$files = new FilesystemIterator($folder);
|
||||
foreach ($files as $file) {
|
||||
if ($file->isDir()) {
|
||||
continue;
|
||||
}
|
||||
include_once $file->getRealPath();
|
||||
}
|
2
cli/resources/commands/ventas/cierres.php
Normal file
2
cli/resources/commands/ventas/cierres.php
Normal file
@ -0,0 +1,2 @@
|
||||
<?php
|
||||
$app->add($app->getContainer()->get(Incoviba\Command\Ventas\Cierres\Vigentes::class));
|
4
cli/resources/commands/ventas/cuotas.php
Normal file
4
cli/resources/commands/ventas/cuotas.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
$app->add($app->getContainer()->get(Incoviba\Command\Ventas\Cuotas\Hoy::class));
|
||||
$app->add($app->getContainer()->get(Incoviba\Command\Ventas\Cuotas\Pendientes::class));
|
||||
$app->add($app->getContainer()->get(Incoviba\Command\Ventas\Cuotas\PorVencer::class));
|
Reference in New Issue
Block a user