1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-04 20:09:40 +01:00
openstamanager/modules/tipi_intervento/api/v1/TipiInterventi.php
2019-07-19 15:23:00 +02:00

24 lines
413 B
PHP

<?php
namespace Modules\TipiIntervento\API\v1;
use API\Interfaces\RetrieveInterface;
class TipiInterventi implements RetrieveInterface
{
public function retrieve($request)
{
$table = 'in_tipiintervento';
$select = [
'*',
'id' => 'idtipointervento',
];
return [
'select' => $select,
'table' => $table,
];
}
}