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

@ -85,10 +85,10 @@ class PlatformModel extends Model
string $submitUrl = null
): int | false {
$data = [
'slug' => $slug,
'type' => $type,
'label' => $label,
'home_url' => $homeUrl,
'slug' => $slug,
'type' => $type,
'label' => $label,
'home_url' => $homeUrl,
'submit_url' => $submitUrl,
];
@ -195,7 +195,7 @@ class PlatformModel extends Model
return $this->db->table('podcasts_platforms')
->delete([
'podcast_id' => $podcastId,
'podcast_id' => $podcastId,
'platform_slug' => $platformSlug,
]);
}