for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Entity;
/**
* @Entity
* @Table(name="boards")
*/
class Board
{
* @Id
* @Column(type="integer")
* @GeneratedValue
protected $id;
* @Column(type="text", length=255)
protected $name;
protected $title;
public function getId()
return $this->id;
}
public function getName()
return $this->name;
public function getTitle()
return $this->title;