more types

This commit is contained in:
Shish
2020-01-26 18:47:30 +00:00
parent 235b976dbc
commit e0778f94f7
6 changed files with 32 additions and 16 deletions

View File

@@ -43,15 +43,34 @@ class CommentPostingException extends SCoreException
class Comment
{
/** @var User */
public $owner;
/** @var int */
public $owner_id;
/** @var string */
public $owner_name;
/** @var string */
public $owner_email;
/** @var string */
public $owner_class;
/** @var string */
public $comment;
/** @var int */
public $comment_id;
/** @var int */
public $image_id;
/** @var string */
public $poster_ip;
/** @var string */
public $posted;
public function __construct($row)