@@ -70,9 +70,9 @@ |
||
70 | 70 | public function serialize() |
71 | 71 | { |
72 | 72 | return [ |
73 | - 'id' => $this->id, |
|
74 | - 'label' => $this->label, |
|
75 | - 'domain' => $this->domain, |
|
73 | + 'id' => $this->id, |
|
74 | + 'label' => $this->label, |
|
75 | + 'domain' => $this->domain, |
|
76 | 76 | ]; |
77 | 77 | } |
78 | 78 |
@@ -88,11 +88,11 @@ |
||
88 | 88 | } |
89 | 89 | |
90 | 90 | return parent::serialize() + array( |
91 | - 'title' => (string) $this->getTitle(), |
|
92 | - 'addresses' => $addresses, |
|
93 | - 'phones' => $this->getPhones(), |
|
94 | - 'emails' => $this->getEmails(), |
|
95 | - 'urls' => $this->getUrls(), |
|
91 | + 'title' => (string) $this->getTitle(), |
|
92 | + 'addresses' => $addresses, |
|
93 | + 'phones' => $this->getPhones(), |
|
94 | + 'emails' => $this->getEmails(), |
|
95 | + 'urls' => $this->getUrls(), |
|
96 | 96 | ); |
97 | 97 | } |
98 | 98 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | public function serialize() |
34 | 34 | { |
35 | 35 | return array( |
36 | - 'organizer_id' => $this->organizerId, |
|
36 | + 'organizer_id' => $this->organizerId, |
|
37 | 37 | ); |
38 | 38 | } |
39 | 39 |
@@ -13,11 +13,11 @@ |
||
13 | 13 | interface SluggerInterface |
14 | 14 | { |
15 | 15 | /** |
16 | - * Returns the slug for a given string |
|
17 | - * |
|
18 | - * @param string $string |
|
19 | - * |
|
20 | - * @return string |
|
21 | - **/ |
|
16 | + * Returns the slug for a given string |
|
17 | + * |
|
18 | + * @param string $string |
|
19 | + * |
|
20 | + * @return string |
|
21 | + **/ |
|
22 | 22 | public function slug($string); |
23 | 23 | } |
@@ -81,10 +81,10 @@ |
||
81 | 81 | public function serialize() |
82 | 82 | { |
83 | 83 | return [ |
84 | - 'streetAddress' => $this->streetAddress->toNative(), |
|
85 | - 'postalCode' => $this->postalCode->toNative(), |
|
86 | - 'addressLocality' => $this->locality->toNative(), |
|
87 | - 'addressCountry' => $this->countryCode, |
|
84 | + 'streetAddress' => $this->streetAddress->toNative(), |
|
85 | + 'postalCode' => $this->postalCode->toNative(), |
|
86 | + 'addressLocality' => $this->locality->toNative(), |
|
87 | + 'addressCountry' => $this->countryCode, |
|
88 | 88 | ]; |
89 | 89 | } |
90 | 90 |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | ); |
85 | 85 | |
86 | 86 | $calendar = [ |
87 | - 'type' => $this->type, |
|
87 | + 'type' => $this->type, |
|
88 | 88 | ]; |
89 | 89 | |
90 | 90 | empty($this->startDate) ?: $calendar['startDate'] = $this->startDate->format(DateTime::ATOM); |
@@ -167,9 +167,9 @@ discard block |
||
167 | 167 | $jsonLd['subEvent'] = array(); |
168 | 168 | foreach ($timestamps as $timestamp) { |
169 | 169 | $jsonLd['subEvent'][] = array( |
170 | - '@type' => 'Event', |
|
171 | - 'startDate' => $timestamp->getStartDate()->format(DateTime::ATOM), |
|
172 | - 'endDate' => $timestamp->getEndDate()->format(DateTime::ATOM), |
|
170 | + '@type' => 'Event', |
|
171 | + 'startDate' => $timestamp->getStartDate()->format(DateTime::ATOM), |
|
172 | + 'endDate' => $timestamp->getEndDate()->format(DateTime::ATOM), |
|
173 | 173 | ); |
174 | 174 | } |
175 | 175 | } |
@@ -67,9 +67,9 @@ |
||
67 | 67 | public function serialize() |
68 | 68 | { |
69 | 69 | return [ |
70 | - 'phone' => $this->phones, |
|
71 | - 'email' => $this->emails, |
|
72 | - 'url' => $this->urls, |
|
70 | + 'phone' => $this->phones, |
|
71 | + 'email' => $this->emails, |
|
72 | + 'url' => $this->urls, |
|
73 | 73 | ]; |
74 | 74 | } |
75 | 75 |
@@ -62,7 +62,7 @@ |
||
62 | 62 | return array_reduce( |
63 | 63 | $data, |
64 | 64 | function (DayOfWeekCollection $collection, $dayOfWeek) { |
65 | - return $collection->addDayOfWeek(DayOfWeek::fromNative($dayOfWeek)); |
|
65 | + return $collection->addDayOfWeek(DayOfWeek::fromNative($dayOfWeek)); |
|
66 | 66 | }, |
67 | 67 | new DayOfWeekCollection() |
68 | 68 | ); |
@@ -116,9 +116,9 @@ |
||
116 | 116 | { |
117 | 117 | $serialized = array_filter( |
118 | 118 | [ |
119 | - 'phone' => $this->phone, |
|
120 | - 'email' => $this->email, |
|
121 | - 'url' => $this->url, |
|
119 | + 'phone' => $this->phone, |
|
120 | + 'email' => $this->email, |
|
121 | + 'url' => $this->url, |
|
122 | 122 | ] |
123 | 123 | ); |
124 | 124 |