for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\RedirectBundle\Tests\Fixture\Bundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Zenstruck\RedirectBundle\Model\NotFound;
/**
* @author Kevin Bond <[email protected]>
*
* @ORM\Entity
* @ORM\Table(name="not_founds")
*/
class DummyNotFound extends NotFound
{
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
private $id;
public function getId()
return $this->id;
}