Indentation fixes
This commit is contained in:
parent
aaf09e61c1
commit
cdf588bc47
|
@ -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();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue