mirror of
https://github.com/standardebooks/web.git
synced 2025-07-10 00:30:28 -04:00
Change tag type from string to enum (TagType)
This commit is contained in:
parent
59eee3cc57
commit
5b1bb2a9f0
6 changed files with 26 additions and 16 deletions
|
@ -4,7 +4,7 @@ use function Safe\preg_replace;
|
|||
|
||||
class ArtworkTag extends Tag{
|
||||
public function __construct(){
|
||||
$this->Type = 'artwork';
|
||||
$this->Type = TagType::Artwork;
|
||||
}
|
||||
|
||||
// *******
|
||||
|
@ -45,7 +45,7 @@ class ArtworkTag extends Tag{
|
|||
$error->Add(new Exceptions\InvalidArtworkTagNameException());
|
||||
}
|
||||
|
||||
if($this->Type != 'artwork'){
|
||||
if($this->Type != TagType::Artwork){
|
||||
$error->Add(new Exceptions\InvalidArtworkTagTypeException($this->Type));
|
||||
}
|
||||
|
||||
|
@ -76,8 +76,8 @@ class ArtworkTag extends Tag{
|
|||
SELECT *
|
||||
from Tags
|
||||
where Name = ?
|
||||
and Type = "artwork"
|
||||
', [$artworkTag->Name], ArtworkTag::class);
|
||||
and Type = ?
|
||||
', [$artworkTag->Name, TagType::Artwork], ArtworkTag::class);
|
||||
|
||||
if(isset($result[0])){
|
||||
return $result[0];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue