Indentation fixes

This commit is contained in:
Oliver Davies 2017-11-14 18:26:01 +00:00
parent aaf09e61c1
commit cdf588bc47
2 changed files with 36 additions and 35 deletions

View file

@ -93,7 +93,8 @@ class FormatTalksExtension extends Twig_Extension
// Build an associative array with the talk, as well as the // Build an associative array with the talk, as well as the
// specified event data (e.g. date and time) as well as the shared // specified event data (e.g. date and time) as well as the shared
// event data (e.g. event name and website). // event data (e.g. event name and website).
return collect($talk['events'])->map(function ($event) use ($talk, $event_data) { return collect($talk['events'])
->map(function ($event) use ($talk, $event_data) {
$event = collect($event); $event = collect($event);
$event = $event->merge($event_data->get($event->get('event')))->all(); $event = $event->merge($event_data->get($event->get('event')))->all();