feat: set min PHP version to 8.5 + upgrade CI4 to 4.7

update all dependencies to latest
This commit is contained in:
Yassine Doghri 2026-02-19 16:23:20 +00:00
commit ed57e13b40
No known key found for this signature in database
GPG key ID: 1F41CB39A01C099A
109 changed files with 577 additions and 381 deletions

View file

@ -145,11 +145,9 @@ class EpisodeCommentController extends BaseController
$pager = $commentReplies->pager;
$orderedItems = [];
if ($paginatedReplies !== null) {
foreach ($paginatedReplies as $reply) {
$replyObject = new CommentObject($reply);
$orderedItems[] = $replyObject;
}
foreach ($paginatedReplies as $reply) {
$replyObject = new CommentObject($reply);
$orderedItems[] = $replyObject;
}
$collection = new OrderedCollectionPage($pager, $orderedItems);