More refactoring for static analysis

This commit is contained in:
Alex Cabal 2019-01-18 17:49:13 -06:00
parent 5939195955
commit ba53958596
9 changed files with 55 additions and 36 deletions

11
lib/EbookSource.php Normal file
View file

@ -0,0 +1,11 @@
<?
class EbookSource{
public $Type;
public $Url;
public function __construct(int $type, string $url){
$this->Type = $type;
$this->Url = $url;
}
}
?>