Add phpdoc
This commit is contained in:
parent
29e176d0c3
commit
80c217aaf3
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue