for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OmnideskBundle\Model;
/**
* Class Language
* @package OmnideskBundle\Model
*/
class Language
{
* @var int
private $id;
* @var string
private $code;
private $title;
* @var boolean
private $active;
* @return int
public function getId()
return $this->id;
}
* @param int $id
* @return $this
public function setId($id)
$this->id = $id;
return $this;
* @return string
public function getCode()
return $this->code;
* @param string $code
public function setCode($code)
$this->code = $code;
public function getTitle()
return $this->title;
* @param string $title
public function setTitle($title)
$this->title = $title;
* @return bool
public function isActive()
return $this->active;
* @param bool $active
public function setActive($active)
$this->active = $active;