style: update ecs config to align associative arrays arrows

update composer dependencies to latest
This commit is contained in:
Yassine Doghri 2023-06-12 14:47:38 +00:00
commit 2a50f6e4d2
268 changed files with 3833 additions and 3973 deletions

View file

@ -202,7 +202,7 @@ class EpisodeCommentModel extends UuidModel
$episodeCommentsBuilder = $this->builder();
$episodeComments = $episodeCommentsBuilder->select('*, 0 as is_from_post')
->where([
'episode_id' => $episodeId,
'episode_id' => $episodeId,
'in_reply_to_id' => null,
])
->getCompiledSelect();
@ -216,7 +216,7 @@ class EpisodeCommentModel extends UuidModel
return $builder->select('id')
->from(config('Fediverse')->tablesPrefix . 'posts')
->where([
'episode_id' => $episodeId,
'episode_id' => $episodeId,
'in_reply_to_id' => null,
]);
})