Skip to content

Commit

Permalink
Use AbstractDocument as parameter type
Browse files Browse the repository at this point in the history
  • Loading branch information
chrizzor committed Jul 15, 2024
1 parent a63f263 commit ca2e382
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Classes/Controller/PageViewController.php
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ public function addDocumentAction(FormAddDocument $formAddDocument)
/**
* Get all measures from musical struct
* @param int $page
* @param $specificDoc
* @param ?AbstractDocument $specificDoc
* @return array
*/
protected function getMeasures(int $page, $specificDoc = null, $docNumber = null): array
Expand Down Expand Up @@ -358,7 +358,7 @@ protected function getMeasures(int $page, $specificDoc = null, $docNumber = null
* @access protected
*
* @param int $page: Page number
* @param $specificDoc
* @param ?AbstractDocument $specificDoc
*
* @return array URL and MIME type of fulltext file
*/
Expand Down Expand Up @@ -602,7 +602,7 @@ protected function getAnnotationContainers(int $page): array
*
* @param int $page Page number
*
* @param $specificDoc
* @param ?AbstractDocument $specificDoc
*
* @return array URL and MIME type of image file
*/
Expand Down

0 comments on commit ca2e382

Please sign in to comment.