mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 17:42:29 -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,13 +1,13 @@
|
|||
<?
|
||||
class OpdsNavigationEntry{
|
||||
public $Id;
|
||||
public $Url;
|
||||
public $Rel;
|
||||
public $Type;
|
||||
public $Updated;
|
||||
public $Description;
|
||||
public $Title;
|
||||
public $SortTitle;
|
||||
public string $Id;
|
||||
public string $Url;
|
||||
public string $Rel;
|
||||
public string $Type;
|
||||
public ?DateTime $Updated;
|
||||
public string $Description;
|
||||
public string $Title;
|
||||
public string $SortTitle;
|
||||
|
||||
public function __construct(string $title, string $description, string $url, ?DateTime $updated, string $rel, string $type){
|
||||
$this->Id = SITE_URL . $url;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue