mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-11 10:46:43 +02:00
style: update ecs config to align associative arrays arrows
update composer dependencies to latest
This commit is contained in:
parent
3fc1d8e18d
commit
2a50f6e4d2
268 changed files with 3833 additions and 3973 deletions
|
|
@ -31,7 +31,7 @@ class MapController extends BaseController
|
|||
|
||||
if (! ($found = cache($cacheName))) {
|
||||
return view('pages/map', [], [
|
||||
'cache' => DECADE,
|
||||
'cache' => DECADE,
|
||||
'cache_name' => $cacheName,
|
||||
]);
|
||||
}
|
||||
|
|
@ -50,13 +50,13 @@ class MapController extends BaseController
|
|||
$found = [];
|
||||
foreach ($episodes as $episode) {
|
||||
$found[] = [
|
||||
'latitude' => $episode->location->latitude,
|
||||
'longitude' => $episode->location->longitude,
|
||||
'latitude' => $episode->location->latitude,
|
||||
'longitude' => $episode->location->longitude,
|
||||
'location_name' => esc($episode->location->name),
|
||||
'location_url' => $episode->location->url,
|
||||
'episode_link' => $episode->link,
|
||||
'podcast_link' => $episode->podcast->link,
|
||||
'cover_url' => $episode->cover->thumbnail_url,
|
||||
'location_url' => $episode->location->url,
|
||||
'episode_link' => $episode->link,
|
||||
'podcast_link' => $episode->podcast->link,
|
||||
'cover_url' => $episode->cover->thumbnail_url,
|
||||
'podcast_title' => esc($episode->podcast->title),
|
||||
'episode_title' => esc($episode->title),
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue