Acme\DemoBundle\Entity\Todo::setTitle PHP Method

setTitle() public method

Set title
public setTitle ( string $title ) : Todo
$title string
return Todo
    public function setTitle($title)
    {
        $this->title = $title;
        return $this;
    }