for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Entité Company.
*
* PHP Version 5
* @author Quétier Laurent <[email protected]>
* @copyright 2014 Dev-Int GLSR
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version since 1.0.0
* @link https://github.com/Dev-Int/glsr
*/
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
* Company Entité Company.
* @category Entity
* @ORM\Table(name="gs_company")
* @ORM\Entity(repositoryClass="AppBundle\Entity\CompanyRepository")
class Company extends Contact
{
* @var int id de l'entreprise
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
private $id;
* @var string Statut de l'entreprise
* @ORM\Column(name="status", type="string", length=255)
private $status;
* Get id
* @return integer
public function getId()
return $this->id;
}
* Set status.
* @param string $status Statut juridique
* @return Company
public function setStatus($status)
$this->status = $status;
return $this;
* Get status.
* @return string
public function getStatus()
return $this->status;