mirror of
https://github.com/standardebooks/web.git
synced 2025-07-10 00:30:28 -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
|
@ -8,11 +8,11 @@ use function Safe\strtotime;
|
|||
* @property string $Url
|
||||
*/
|
||||
class Session extends PropertiesBase{
|
||||
public $UserId;
|
||||
protected $_User = null;
|
||||
public $Created;
|
||||
public $SessionId;
|
||||
public $_Url;
|
||||
public int $UserId;
|
||||
protected ?User $_User = null;
|
||||
public DateTime $Created;
|
||||
public string $SessionId;
|
||||
public ?string $_Url = null;
|
||||
|
||||
|
||||
// *******
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue