for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Starkerxp\LeadBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Starkerxp\StructureBundle\Entity\AbstractUser;
/**
* Lead
*
* @ORM\Table(name="form", indexes={
* @ORM\Index(columns={"name"}),
* @ORM\Index(columns={"uuid"}),
* @ORM\Index(columns={"created_at"}),
* @ORM\Index(columns={"updated_at"})
* })
* @ORM\Entity(repositoryClass="Starkerxp\LeadBundle\Repository\FormRepository")
*/
class Form extends AbstractUser
{
* @var string
* @ORM\Column(name="name", type="string", length=255, nullable=false)
protected $name;
* @var array
* @ORM\Column(name="configuration", type="json_array", nullable=false)
protected $configuration;
* @return string
public function getName()
return $this->name;
}
* @param string $name
public function setName($name)
$this->name = $name;
* @return array
public function getConfiguration()
return $this->configuration;
* @param array $configuration
public function setConfiguration($configuration)
$this->configuration = $configuration;
This check marks files that end in a newline character, i.e. an empy line.
This check marks files that end in a newline character, i.e. an empy line.