<?php
namespace App\Util;
use App\Util\VaciFacilController as VF;
use Doctrine\Persistence\ManagerRegistry as DMR;
class GenericForm extends CustomType
{
public function __construct(VF $controller, DMR $entityManage)
{
parent::__construct($controller, $entityManage);
$this->default[self::BUTTON_CLOSE]["ignore"] = true;
$this->default[self::BUTTON_SAVE]["ignore"] = true;
}
}