Skip to content

Commit

Permalink
Change visibility of UriController methods
Browse files Browse the repository at this point in the history
  • Loading branch information
markusweigelt committed Feb 21, 2025
1 parent d914cd8 commit 131012d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Controller/UriController.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function mainAction(): ResponseInterface
* @param AbstractDocument|null $doc
* @return void
*/
public function assignUriBook(?AbstractDocument $doc): void
private function assignUriBook(?AbstractDocument $doc): void
{
// Get persistent identifier of book.
$uriBook = GeneralUtility::trimExplode(' ', $doc->physicalStructureInfo[$doc->physicalStructure[0]]['contentIds'], TRUE);
Expand Down Expand Up @@ -106,7 +106,7 @@ public function assignUriBook(?AbstractDocument $doc): void
* @param AbstractDocument|null $doc
* @return void
*/
public function assignUriPage(?AbstractDocument $doc): void
private function assignUriPage(?AbstractDocument $doc): void
{
if (!isset($this->requestData['page'])) {
return;
Expand Down

0 comments on commit 131012d

Please sign in to comment.