17 lines
405 B
PHP
17 lines
405 B
PHP
|
<?php
|
||
|
namespace Common\Controller;
|
||
|
|
||
|
use Psr\Container\ContainerInterface;
|
||
|
use ProVM\Alias\API\Controller;
|
||
|
use Contabilidad\Repository\Coneccion;
|
||
|
|
||
|
class Conecciones extends Controller
|
||
|
{
|
||
|
public function setup(ContainerInterface $container): void
|
||
|
{
|
||
|
$this->setSingular('coneccion')
|
||
|
->setPlural('conecciones')
|
||
|
->setRepository($container->get(Coneccion::class));
|
||
|
}
|
||
|
}
|