mirror of
https://github.com/Karaka-Management/oms-Billing.git
synced 2026-01-11 15:18:42 +00:00
14 lines
277 B
PHP
Executable File
14 lines
277 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^/billing/bill/purchase/parse( .*$|$)' => [
|
|
[
|
|
'dest' => '\Modules\Billing\Controller\CliController:cliParseSupplierBill',
|
|
'verb' => RouteVerb::ANY,
|
|
],
|
|
],
|
|
];
|