27 lines
462 B
PHP
Executable File
27 lines
462 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Traits\ApiResponser;
|
|
use App\Traits\Helper;
|
|
use Laravel\Lumen\Routing\Controller as BaseController;
|
|
|
|
/**
|
|
* @OA\Info(
|
|
* title="Wallet Service Interne API",
|
|
* version="1.0.0",
|
|
* @OA\Contact(
|
|
* email="administrateur@ilink-app.com",
|
|
* url = "https://ilink-app.com/",
|
|
* name="Developer Team"
|
|
* )
|
|
* )
|
|
*
|
|
*/
|
|
class Controller extends BaseController
|
|
{
|
|
//
|
|
use ApiResponser;
|
|
use Helper;
|
|
}
|