diff --git a/src/Model/Tweet.php b/src/Model/Tweet.php index 4eb9f7b..f556258 100644 --- a/src/Model/Tweet.php +++ b/src/Model/Tweet.php @@ -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