for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* (c) FSi sp. z o.o. <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FSi\FixturesBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
* @ORM\Entity
* @ORM\Table(name="category")
class Category
{
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
protected $id;
* @ORM\Column(type="string", length=100)
protected $title;
public function getId()
return $this->id;
}
public function setTitle($title)
$this->title = $title;
public function getTitle()
return $this->title;