mirror of
https://github.com/standardebooks/web.git
synced 2025-07-22 15:24:46 -04:00
Flesh out some PHPDocs, and consistently name enums
This commit is contained in:
parent
ace9cea6b7
commit
a9eab552ab
25 changed files with 205 additions and 118 deletions
|
@ -11,11 +11,11 @@ $artworks = $artworks ?? [];
|
|||
}
|
||||
|
||||
switch($artwork->Status){
|
||||
case ArtworkStatus::Unverified:
|
||||
case ArtworkStatusType::Unverified:
|
||||
$class .= ' unverified';
|
||||
break;
|
||||
|
||||
case ArtworkStatus::Declined:
|
||||
case ArtworkStatusType::Declined:
|
||||
$class .= ' declined';
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue