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 class Tweet
{ {
/** @var string */
private $text; private $text;
/** @var string */
private $created; private $created;
/** @var string */
private $author; private $author;
/** @var int */
private $id; private $id;
public function setText(string $text): void public function setText(string $text): void