Skip to content

Commit

Permalink
Fix typehint typo
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Jul 8, 2024
1 parent 9d735da commit ce4acad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/press/FeatureDAO.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ public function getFeaturedAll(int $monographId): array
* @param $assocType The monograph associated object type.
* @param $assocId The monograph associated object id.
*
* @return int|boolean The monograph sequence position or false if no
* @return int|bool The monograph sequence position or false if no
* monograph feature is set.
*/
public function getSequencePosition(int $monographId, int $assocType, int $assocId): int|boolean
public function getSequencePosition(int $monographId, int $assocType, int $assocId): int|bool
{
$result = $this->retrieve(
'SELECT seq FROM features WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?',
Expand Down

0 comments on commit ce4acad

Please sign in to comment.