for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JhFlexiTime\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Class BookedCreditType
* @package JhFlexiTime\Entity
* @author Aydin Hassan <[email protected]>
*
* @ORM\Entity
* @ORM\Table(name="booked_credit_type")
*/
class BookedCreditType
{
* @var int
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
protected $id;
* @var string
* @ORM\Column(type="string", name="short_name", nullable=true)
protected $shortName;
* @ORM\Column(type="string", name="label", nullable=true)
protected $label;
* @return int
public function getId()
return $this->id;
}
* @param int $id
public function setId($id)
$this->id = $id;
* @return string
public function getShortName()
return $this->shortName;
* @param string $shortName
public function setShortName($shortName)
$this->shortName = $shortName;
public function getLabel()
return $this->label;
* @param string $label
public function setLabel($label)
$this->label = $label;