Add type hints for remaining classes

This commit is contained in:
Alex Cabal 2024-01-08 14:11:53 -06:00
parent d7718218ad
commit 783c09864f
35 changed files with 212 additions and 210 deletions

View file

@ -1,16 +1,15 @@
<?
/**
* @property int $VoteCount
* @property Poll $Poll
*/
class PollItem extends PropertiesBase{
public $PollItemId;
public $PollId;
public $Name;
public $Description;
protected $_VoteCount = null;
protected $_Poll = null;
public int $PollItemId;
public int $PollId;
public string $Name;
public string $Description;
protected ?int $_VoteCount = null;
protected ?Poll $_Poll = null;
// *******