Add phpdoc

This commit is contained in:
Oliver Davies 2019-01-11 00:44:38 +00:00
parent 29e176d0c3
commit 80c217aaf3

View file

@ -4,9 +4,16 @@ namespace App\Model;
class Tweet
{
/** @var string */
private $text;
/** @var string */
private $created;
/** @var string */
private $author;
/** @var int */
private $id;
public function setText(string $text): void