From b0955b9e7497f61b227b4fd6b6109d04e9868807 Mon Sep 17 00:00:00 2001 From: Daniel Stainback Date: Wed, 8 May 2019 11:50:27 -0400 Subject: [PATCH] Update Event.php --- src/ContextTypes/Event.php | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/ContextTypes/Event.php b/src/ContextTypes/Event.php index a05238d..694e2ef 100644 --- a/src/ContextTypes/Event.php +++ b/src/ContextTypes/Event.php @@ -18,20 +18,20 @@ class Event extends Thing 'location' => Place::class, ]; - /** - * Constructor. Merges extendedStructure up - * - * @param array $attributes - * @param array $extendedStructure - */ - public function __construct(array $attributes, array $extendedStructure = []) - { - parent::__construct( - $attributes, array_merge($this->structure, $this->extendedStructure, $extendedStructure) - ); - } + /** + * Constructor. Merges extendedStructure up + * + * @param array $attributes + * @param array $extendedStructure + */ + public function __construct(array $attributes, array $extendedStructure = []) + { + parent::__construct( + $attributes, array_merge($this->structure, $this->extendedStructure, $extendedStructure) + ); + } - /** + /** * Set offers attributes. * * @param mixed $values @@ -51,4 +51,4 @@ protected function setOffersAttribute($values) return $values; } -} \ No newline at end of file +}