for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fi\CoreBundle\Entity;
/**
* OpzioniTabella.
*/
class OpzioniTabella
{
* @var int
private $id;
private $tabelle_id;
* @var string
private $descrizione;
private $parametro;
private $valore;
* @var \Fi\CoreBundle\Entity\tabelle
private $tabelle;
* Get id.
*
* @return int
public function getId()
return $this->id;
}
* Set tabelle_id.
* @param int $tabelleId
* @return opzioniTabella
public function setTabelleId($tabelleId)
$this->tabelle_id = $tabelleId;
return $this;
* Get tabelle_id.
public function getTabelleId()
return $this->tabelle_id;
* Set descrizione.
* @param string $descrizione
public function setDescrizione($descrizione)
$this->descrizione = $descrizione;
* Get descrizione.
* @return string
public function getDescrizione()
return $this->descrizione;
* Set parametro.
* @param string $parametro
public function setParametro($parametro)
$this->parametro = $parametro;
* Get parametro.
public function getParametro()
return $this->parametro;
* Set valore.
* @param string $valore
public function setValore($valore)
$this->valore = $valore;
* Get valore.
public function getValore()
return $this->valore;
* Set tabelle.
* @param \Fi\CoreBundle\Entity\tabelle $tabelle
public function setTabelle(\Fi\CoreBundle\Entity\tabelle $tabelle)
$this->tabelle = $tabelle;
* Get tabelle.
* @return \Fi\CoreBundle\Entity\tabelle
public function getTabelle()
return $this->tabelle;