Skip to content

Commit

Permalink
Merge pull request #11 from raccoondepot/feature/Task-6112-100_Add_ty…
Browse files Browse the repository at this point in the history
…pes_for_view_action

[TASK-6112-100] Add types for view action
  • Loading branch information
Voronov authored Aug 9, 2024
2 parents 50eb576 + 64a2402 commit 4c205d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Backend/Controller/LogErrorModuleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public function deleteAction(int $uid): void
$this->redirect('index');
}

public function viewAction(int $uid, $currentPage = 1, $limit = 10)
public function viewAction(int $uid, int $currentPage = 1, int $limit = 10)
{
$errors = $this->errorRepository->getErrorsByUid($uid);
$paginator = new ArrayPaginator($errors, $currentPage, $limit);
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
'author' => 'Serhii Voronov, Rostyslav Matviiv, Andrii Pozdieiev',
'author_email' => 'info@raccoon-depot.com',
'author_company' => 'Raccoon Depot',
'version' => '11.5.2',
'version' => '11.5.3',
];

0 comments on commit 4c205d4

Please sign in to comment.