mirror of
https://github.com/standardebooks/web.git
synced 2025-07-15 19:06:49 -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,11 @@
|
|||
<?
|
||||
use Safe\DateTime;
|
||||
use function Safe\file_get_contents;
|
||||
use function Safe\file_put_contents;
|
||||
use function Safe\preg_replace;
|
||||
use function Safe\rename;
|
||||
use function Safe\tempnam;
|
||||
use function Safe\unlink;
|
||||
|
||||
class AtomFeed extends Feed{
|
||||
public $Id;
|
||||
public $Updated = null;
|
||||
public $Subtitle = null;
|
||||
public string $Id;
|
||||
public ?DateTime $Updated = null;
|
||||
public ?string $Subtitle = null;
|
||||
|
||||
/**
|
||||
* @param string $title
|
||||
|
@ -26,7 +21,6 @@ class AtomFeed extends Feed{
|
|||
$this->Stylesheet = SITE_URL . '/feeds/atom/style';
|
||||
}
|
||||
|
||||
|
||||
// *******
|
||||
// METHODS
|
||||
// *******
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue