forked from AccessManager/access-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathradius
More file actions
20 lines (17 loc) · 621 Bytes
/
radius
File metadata and controls
20 lines (17 loc) · 621 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/php
<?php
include_once "laravel/vendor/autoload.php";
use Symfony\Component\Console\Application;
use AccessManager\Radius\Commands\AuthorizeCommand;
use AccessManager\Radius\Commands\AccountCommand;
use AccessManager\Radius\Commands\FrinternetCronCommand;
use AccessManager\Radius\Commands\APCronCommand;
use AccessManager\Invoices\Commands\InvoiceGeneratorCommand;
$app = new Application();
$app->add( new AuthorizeCommand );
$app->add( new AccountCommand );
$app->add( new FrinternetCronCommand );
$app->add( new APCronCommand );
$app->add( new InvoiceGeneratorCommand );
$app->run();
//end of file radius