mirror of
https://github.com/standardebooks/web.git
synced 2025-07-13 18:11:52 -04:00
Add type hints for remaining classes
This commit is contained in:
parent
d7718218ad
commit
783c09864f
35 changed files with 212 additions and 210 deletions
|
@ -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;
|
||||
|
||||
|
||||
// *******
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue