1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-15 00:46:19 +01:00
openstamanager/modules/tipi_intervento/api/v1/TipiInterventi.php

25 lines
448 B
PHP
Raw Normal View History

2019-07-19 15:23:00 +02:00
<?php
namespace Modules\TipiIntervento\API\v1;
use API\Interfaces\RetrieveInterface;
2019-07-19 16:51:52 +02:00
use API\Resource;
2019-07-19 15:23:00 +02:00
2019-07-19 16:51:52 +02:00
class TipiInterventi extends Resource implements RetrieveInterface
2019-07-19 15:23:00 +02:00
{
public function retrieve($request)
{
$table = 'in_tipiintervento';
$select = [
'*',
'id' => 'idtipointervento',
];
return [
'select' => $select,
'table' => $table,
];
}
}