@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $rules = parent::rules(); |
54 | 54 | $rules = array_merge($rules, [ |
55 | 55 | // Description tags have a special length |
56 | - [['content'], 'string', 'length' => [70, 300], 'on' => ['warning']], |
|
56 | + [ [ 'content' ], 'string', 'length' => [ 70, 300 ], 'on' => [ 'warning' ] ], |
|
57 | 57 | ]); |
58 | 58 | |
59 | 59 | return $rules; |
@@ -66,9 +66,9 @@ discard block |
||
66 | 66 | { |
67 | 67 | $shouldRender = parent::prepForRender($data); |
68 | 68 | if ($shouldRender) { |
69 | - if (!empty($data['content'])) { |
|
69 | + if (!empty($data[ 'content' ])) { |
|
70 | 70 | // Truncate the Description tag content |
71 | - $data['content'] = (string)Stringy::create($data['content'])->safeTruncate( |
|
71 | + $data[ 'content' ] = (string)Stringy::create($data[ 'content' ])->safeTruncate( |
|
72 | 72 | 300, |
73 | 73 | '…' |
74 | 74 | ); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | $rules = parent::rules(); |
70 | 70 | $rules = array_merge($rules, [ |
71 | 71 | // Title tags have a special length |
72 | - [['content'], 'string', 'length' => [40, Seomatic::$settings->maxTitleLength], 'on' => ['warning']], |
|
72 | + [ [ 'content' ], 'string', 'length' => [ 40, Seomatic::$settings->maxTitleLength ], 'on' => [ 'warning' ] ], |
|
73 | 73 | ]); |
74 | 74 | |
75 | 75 | return $rules; |
@@ -126,13 +126,13 @@ discard block |
||
126 | 126 | $suffix = ''; |
127 | 127 | break; |
128 | 128 | } |
129 | - $lengthAdjust = mb_strlen($prefix.$suffix); |
|
129 | + $lengthAdjust = mb_strlen($prefix . $suffix); |
|
130 | 130 | // Truncate the og:title tag content |
131 | - $data['content'] = (string)Stringy::create($data['content'])->safeTruncate( |
|
131 | + $data[ 'content' ] = (string)Stringy::create($data[ 'content' ])->safeTruncate( |
|
132 | 132 | Seomatic::$settings->maxTitleLength - $lengthAdjust, |
133 | 133 | '…' |
134 | 134 | ); |
135 | - $data['content'] = $prefix.$data['content'].$suffix; |
|
135 | + $data[ 'content' ] = $prefix . $data[ 'content' ] . $suffix; |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | return $shouldRender; |
@@ -63,7 +63,7 @@ |
||
63 | 63 | 'nosnippet', |
64 | 64 | 'noimageindex', |
65 | 65 | 'nocache', |
66 | - ], 'on' => ['warning'], |
|
66 | + ], 'on' => [ 'warning' ], |
|
67 | 67 | ], |
68 | 68 | ]); |
69 | 69 |
@@ -57,7 +57,7 @@ |
||
57 | 57 | 'no-referrer-when-downgrade', |
58 | 58 | 'origin-when-crossorigin', |
59 | 59 | 'unsafe-URL', |
60 | - ], 'on' => ['warning'], |
|
60 | + ], 'on' => [ 'warning' ], |
|
61 | 61 | ], |
62 | 62 | ]); |
63 | 63 |
@@ -164,8 +164,8 @@ discard block |
||
164 | 164 | // ========================================================================= |
165 | 165 | |
166 | 166 | /** |
167 | - * @inheritdoc |
|
168 | - */ |
|
167 | + * @inheritdoc |
|
168 | + */ |
|
169 | 169 | public function init() |
170 | 170 | { |
171 | 171 | parent::init(); |
@@ -196,8 +196,8 @@ discard block |
||
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
199 | - * @inheritdoc |
|
200 | - */ |
|
199 | + * @inheritdoc |
|
200 | + */ |
|
201 | 201 | public function rules() |
202 | 202 | { |
203 | 203 | $rules = parent::rules(); |
@@ -63,35 +63,35 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @var array |
65 | 65 | */ |
66 | - static public $schemaPropertyNames = []; |
|
66 | + static public $schemaPropertyNames = [ ]; |
|
67 | 67 | |
68 | 68 | /** |
69 | 69 | * The Schema.org composed Property Expected Types |
70 | 70 | * |
71 | 71 | * @var array |
72 | 72 | */ |
73 | - static public $schemaPropertyExpectedTypes = []; |
|
73 | + static public $schemaPropertyExpectedTypes = [ ]; |
|
74 | 74 | |
75 | 75 | /** |
76 | 76 | * The Schema.org composed Property Descriptions |
77 | 77 | * |
78 | 78 | * @var array |
79 | 79 | */ |
80 | - static public $schemaPropertyDescriptions = []; |
|
80 | + static public $schemaPropertyDescriptions = [ ]; |
|
81 | 81 | |
82 | 82 | /** |
83 | 83 | * The Schema.org composed Google Required Schema for this type |
84 | 84 | * |
85 | 85 | * @var array |
86 | 86 | */ |
87 | - static public $googleRequiredSchema = []; |
|
87 | + static public $googleRequiredSchema = [ ]; |
|
88 | 88 | |
89 | 89 | /** |
90 | 90 | * The Schema.org composed Google Recommended Schema for this type |
91 | 91 | * |
92 | 92 | * @var array |
93 | 93 | */ |
94 | - static public $googleRecommendedSchema = []; |
|
94 | + static public $googleRecommendedSchema = [ ]; |
|
95 | 95 | |
96 | 96 | // Public Properties |
97 | 97 | // ========================================================================= |
@@ -130,8 +130,8 @@ discard block |
||
130 | 130 | * @var array |
131 | 131 | */ |
132 | 132 | static protected $_schemaPropertyExpectedTypes = [ |
133 | - 'geoMidpoint' => ['GeoCoordinates'], |
|
134 | - 'geoRadius' => ['Distance','Number','Text'] |
|
133 | + 'geoMidpoint' => [ 'GeoCoordinates' ], |
|
134 | + 'geoRadius' => [ 'Distance', 'Number', 'Text' ] |
|
135 | 135 | ]; |
136 | 136 | |
137 | 137 | /** |
@@ -202,9 +202,9 @@ discard block |
||
202 | 202 | { |
203 | 203 | $rules = parent::rules(); |
204 | 204 | $rules = array_merge($rules, [ |
205 | - [['geoMidpoint','geoRadius'], 'validateJsonSchema'], |
|
206 | - [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'], |
|
207 | - [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.'] |
|
205 | + [ [ 'geoMidpoint', 'geoRadius' ], 'validateJsonSchema' ], |
|
206 | + [ self::$_googleRequiredSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is required by Google.' ], |
|
207 | + [ self::$_googleRecommendedSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is recommended by Google.' ] |
|
208 | 208 | ]); |
209 | 209 | |
210 | 210 | return $rules; |
@@ -59,35 +59,35 @@ discard block |
||
59 | 59 | * |
60 | 60 | * @var array |
61 | 61 | */ |
62 | - static public $schemaPropertyNames = []; |
|
62 | + static public $schemaPropertyNames = [ ]; |
|
63 | 63 | |
64 | 64 | /** |
65 | 65 | * The Schema.org composed Property Expected Types |
66 | 66 | * |
67 | 67 | * @var array |
68 | 68 | */ |
69 | - static public $schemaPropertyExpectedTypes = []; |
|
69 | + static public $schemaPropertyExpectedTypes = [ ]; |
|
70 | 70 | |
71 | 71 | /** |
72 | 72 | * The Schema.org composed Property Descriptions |
73 | 73 | * |
74 | 74 | * @var array |
75 | 75 | */ |
76 | - static public $schemaPropertyDescriptions = []; |
|
76 | + static public $schemaPropertyDescriptions = [ ]; |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * The Schema.org composed Google Required Schema for this type |
80 | 80 | * |
81 | 81 | * @var array |
82 | 82 | */ |
83 | - static public $googleRequiredSchema = []; |
|
83 | + static public $googleRequiredSchema = [ ]; |
|
84 | 84 | |
85 | 85 | /** |
86 | 86 | * The Schema.org composed Google Recommended Schema for this type |
87 | 87 | * |
88 | 88 | * @var array |
89 | 89 | */ |
90 | - static public $googleRecommendedSchema = []; |
|
90 | + static public $googleRecommendedSchema = [ ]; |
|
91 | 91 | |
92 | 92 | // Public Properties |
93 | 93 | // ========================================================================= |
@@ -150,10 +150,10 @@ discard block |
||
150 | 150 | * @var array |
151 | 151 | */ |
152 | 152 | static protected $_schemaPropertyExpectedTypes = [ |
153 | - 'currenciesAccepted' => ['Text'], |
|
154 | - 'openingHours' => ['Text'], |
|
155 | - 'paymentAccepted' => ['Text'], |
|
156 | - 'priceRange' => ['Text'] |
|
153 | + 'currenciesAccepted' => [ 'Text' ], |
|
154 | + 'openingHours' => [ 'Text' ], |
|
155 | + 'paymentAccepted' => [ 'Text' ], |
|
156 | + 'priceRange' => [ 'Text' ] |
|
157 | 157 | ]; |
158 | 158 | |
159 | 159 | /** |
@@ -226,9 +226,9 @@ discard block |
||
226 | 226 | { |
227 | 227 | $rules = parent::rules(); |
228 | 228 | $rules = array_merge($rules, [ |
229 | - [['currenciesAccepted','openingHours','paymentAccepted','priceRange'], 'validateJsonSchema'], |
|
230 | - [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'], |
|
231 | - [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.'] |
|
229 | + [ [ 'currenciesAccepted', 'openingHours', 'paymentAccepted', 'priceRange' ], 'validateJsonSchema' ], |
|
230 | + [ self::$_googleRequiredSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is required by Google.' ], |
|
231 | + [ self::$_googleRecommendedSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is recommended by Google.' ] |
|
232 | 232 | ]); |
233 | 233 | |
234 | 234 | return $rules; |
@@ -164,8 +164,8 @@ discard block |
||
164 | 164 | // ========================================================================= |
165 | 165 | |
166 | 166 | /** |
167 | - * @inheritdoc |
|
168 | - */ |
|
167 | + * @inheritdoc |
|
168 | + */ |
|
169 | 169 | public function init() |
170 | 170 | { |
171 | 171 | parent::init(); |
@@ -196,8 +196,8 @@ discard block |
||
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
199 | - * @inheritdoc |
|
200 | - */ |
|
199 | + * @inheritdoc |
|
200 | + */ |
|
201 | 201 | public function rules() |
202 | 202 | { |
203 | 203 | $rules = parent::rules(); |
@@ -59,35 +59,35 @@ discard block |
||
59 | 59 | * |
60 | 60 | * @var array |
61 | 61 | */ |
62 | - static public $schemaPropertyNames = []; |
|
62 | + static public $schemaPropertyNames = [ ]; |
|
63 | 63 | |
64 | 64 | /** |
65 | 65 | * The Schema.org composed Property Expected Types |
66 | 66 | * |
67 | 67 | * @var array |
68 | 68 | */ |
69 | - static public $schemaPropertyExpectedTypes = []; |
|
69 | + static public $schemaPropertyExpectedTypes = [ ]; |
|
70 | 70 | |
71 | 71 | /** |
72 | 72 | * The Schema.org composed Property Descriptions |
73 | 73 | * |
74 | 74 | * @var array |
75 | 75 | */ |
76 | - static public $schemaPropertyDescriptions = []; |
|
76 | + static public $schemaPropertyDescriptions = [ ]; |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * The Schema.org composed Google Required Schema for this type |
80 | 80 | * |
81 | 81 | * @var array |
82 | 82 | */ |
83 | - static public $googleRequiredSchema = []; |
|
83 | + static public $googleRequiredSchema = [ ]; |
|
84 | 84 | |
85 | 85 | /** |
86 | 86 | * The Schema.org composed Google Recommended Schema for this type |
87 | 87 | * |
88 | 88 | * @var array |
89 | 89 | */ |
90 | - static public $googleRecommendedSchema = []; |
|
90 | + static public $googleRecommendedSchema = [ ]; |
|
91 | 91 | |
92 | 92 | // Public Properties |
93 | 93 | // ========================================================================= |
@@ -427,39 +427,39 @@ discard block |
||
427 | 427 | * @var array |
428 | 428 | */ |
429 | 429 | static protected $_schemaPropertyExpectedTypes = [ |
430 | - 'additionalProperty' => ['PropertyValue'], |
|
431 | - 'address' => ['PostalAddress','Text'], |
|
432 | - 'aggregateRating' => ['AggregateRating'], |
|
433 | - 'amenityFeature' => ['LocationFeatureSpecification'], |
|
434 | - 'branchCode' => ['Text'], |
|
435 | - 'containedInPlace' => ['Place'], |
|
436 | - 'containsPlace' => ['Place'], |
|
437 | - 'event' => ['Event'], |
|
438 | - 'faxNumber' => ['Text'], |
|
439 | - 'geo' => ['GeoCoordinates','GeoShape'], |
|
440 | - 'geospatiallyContains' => ['GeospatialGeometry','Place'], |
|
441 | - 'geospatiallyCoveredBy' => ['GeospatialGeometry','Place'], |
|
442 | - 'geospatiallyCovers' => ['GeospatialGeometry','Place'], |
|
443 | - 'geospatiallyCrosses' => ['GeospatialGeometry','Place'], |
|
444 | - 'geospatiallyDisjoint' => ['GeospatialGeometry','Place'], |
|
445 | - 'geospatiallyEquals' => ['GeospatialGeometry','Place'], |
|
446 | - 'geospatiallyIntersects' => ['GeospatialGeometry','Place'], |
|
447 | - 'geospatiallyOverlaps' => ['GeospatialGeometry','Place'], |
|
448 | - 'geospatiallyTouches' => ['GeospatialGeometry','Place'], |
|
449 | - 'geospatiallyWithin' => ['GeospatialGeometry','Place'], |
|
450 | - 'globalLocationNumber' => ['Text'], |
|
451 | - 'hasMap' => ['Map','URL'], |
|
452 | - 'isAccessibleForFree' => ['Boolean'], |
|
453 | - 'isicV4' => ['Text'], |
|
454 | - 'logo' => ['ImageObject','URL'], |
|
455 | - 'maximumAttendeeCapacity' => ['Integer'], |
|
456 | - 'openingHoursSpecification' => ['OpeningHoursSpecification'], |
|
457 | - 'photo' => ['ImageObject','Photograph'], |
|
458 | - 'publicAccess' => ['Boolean'], |
|
459 | - 'review' => ['Review'], |
|
460 | - 'smokingAllowed' => ['Boolean'], |
|
461 | - 'specialOpeningHoursSpecification' => ['OpeningHoursSpecification'], |
|
462 | - 'telephone' => ['Text'] |
|
430 | + 'additionalProperty' => [ 'PropertyValue' ], |
|
431 | + 'address' => [ 'PostalAddress', 'Text' ], |
|
432 | + 'aggregateRating' => [ 'AggregateRating' ], |
|
433 | + 'amenityFeature' => [ 'LocationFeatureSpecification' ], |
|
434 | + 'branchCode' => [ 'Text' ], |
|
435 | + 'containedInPlace' => [ 'Place' ], |
|
436 | + 'containsPlace' => [ 'Place' ], |
|
437 | + 'event' => [ 'Event' ], |
|
438 | + 'faxNumber' => [ 'Text' ], |
|
439 | + 'geo' => [ 'GeoCoordinates', 'GeoShape' ], |
|
440 | + 'geospatiallyContains' => [ 'GeospatialGeometry', 'Place' ], |
|
441 | + 'geospatiallyCoveredBy' => [ 'GeospatialGeometry', 'Place' ], |
|
442 | + 'geospatiallyCovers' => [ 'GeospatialGeometry', 'Place' ], |
|
443 | + 'geospatiallyCrosses' => [ 'GeospatialGeometry', 'Place' ], |
|
444 | + 'geospatiallyDisjoint' => [ 'GeospatialGeometry', 'Place' ], |
|
445 | + 'geospatiallyEquals' => [ 'GeospatialGeometry', 'Place' ], |
|
446 | + 'geospatiallyIntersects' => [ 'GeospatialGeometry', 'Place' ], |
|
447 | + 'geospatiallyOverlaps' => [ 'GeospatialGeometry', 'Place' ], |
|
448 | + 'geospatiallyTouches' => [ 'GeospatialGeometry', 'Place' ], |
|
449 | + 'geospatiallyWithin' => [ 'GeospatialGeometry', 'Place' ], |
|
450 | + 'globalLocationNumber' => [ 'Text' ], |
|
451 | + 'hasMap' => [ 'Map', 'URL' ], |
|
452 | + 'isAccessibleForFree' => [ 'Boolean' ], |
|
453 | + 'isicV4' => [ 'Text' ], |
|
454 | + 'logo' => [ 'ImageObject', 'URL' ], |
|
455 | + 'maximumAttendeeCapacity' => [ 'Integer' ], |
|
456 | + 'openingHoursSpecification' => [ 'OpeningHoursSpecification' ], |
|
457 | + 'photo' => [ 'ImageObject', 'Photograph' ], |
|
458 | + 'publicAccess' => [ 'Boolean' ], |
|
459 | + 'review' => [ 'Review' ], |
|
460 | + 'smokingAllowed' => [ 'Boolean' ], |
|
461 | + 'specialOpeningHoursSpecification' => [ 'OpeningHoursSpecification' ], |
|
462 | + 'telephone' => [ 'Text' ] |
|
463 | 463 | ]; |
464 | 464 | |
465 | 465 | /** |
@@ -561,9 +561,9 @@ discard block |
||
561 | 561 | { |
562 | 562 | $rules = parent::rules(); |
563 | 563 | $rules = array_merge($rules, [ |
564 | - [['additionalProperty','address','aggregateRating','amenityFeature','branchCode','containedInPlace','containsPlace','event','faxNumber','geo','geospatiallyContains','geospatiallyCoveredBy','geospatiallyCovers','geospatiallyCrosses','geospatiallyDisjoint','geospatiallyEquals','geospatiallyIntersects','geospatiallyOverlaps','geospatiallyTouches','geospatiallyWithin','globalLocationNumber','hasMap','isAccessibleForFree','isicV4','logo','maximumAttendeeCapacity','openingHoursSpecification','photo','publicAccess','review','smokingAllowed','specialOpeningHoursSpecification','telephone'], 'validateJsonSchema'], |
|
565 | - [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'], |
|
566 | - [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.'] |
|
564 | + [ [ 'additionalProperty', 'address', 'aggregateRating', 'amenityFeature', 'branchCode', 'containedInPlace', 'containsPlace', 'event', 'faxNumber', 'geo', 'geospatiallyContains', 'geospatiallyCoveredBy', 'geospatiallyCovers', 'geospatiallyCrosses', 'geospatiallyDisjoint', 'geospatiallyEquals', 'geospatiallyIntersects', 'geospatiallyOverlaps', 'geospatiallyTouches', 'geospatiallyWithin', 'globalLocationNumber', 'hasMap', 'isAccessibleForFree', 'isicV4', 'logo', 'maximumAttendeeCapacity', 'openingHoursSpecification', 'photo', 'publicAccess', 'review', 'smokingAllowed', 'specialOpeningHoursSpecification', 'telephone' ], 'validateJsonSchema' ], |
|
565 | + [ self::$_googleRequiredSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is required by Google.' ], |
|
566 | + [ self::$_googleRecommendedSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is recommended by Google.' ] |
|
567 | 567 | ]); |
568 | 568 | |
569 | 569 | return $rules; |
@@ -164,8 +164,8 @@ discard block |
||
164 | 164 | // ========================================================================= |
165 | 165 | |
166 | 166 | /** |
167 | - * @inheritdoc |
|
168 | - */ |
|
167 | + * @inheritdoc |
|
168 | + */ |
|
169 | 169 | public function init() |
170 | 170 | { |
171 | 171 | parent::init(); |
@@ -196,8 +196,8 @@ discard block |
||
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
199 | - * @inheritdoc |
|
200 | - */ |
|
199 | + * @inheritdoc |
|
200 | + */ |
|
201 | 201 | public function rules() |
202 | 202 | { |
203 | 203 | $rules = parent::rules(); |
@@ -60,35 +60,35 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @var array |
62 | 62 | */ |
63 | - static public $schemaPropertyNames = []; |
|
63 | + static public $schemaPropertyNames = [ ]; |
|
64 | 64 | |
65 | 65 | /** |
66 | 66 | * The Schema.org composed Property Expected Types |
67 | 67 | * |
68 | 68 | * @var array |
69 | 69 | */ |
70 | - static public $schemaPropertyExpectedTypes = []; |
|
70 | + static public $schemaPropertyExpectedTypes = [ ]; |
|
71 | 71 | |
72 | 72 | /** |
73 | 73 | * The Schema.org composed Property Descriptions |
74 | 74 | * |
75 | 75 | * @var array |
76 | 76 | */ |
77 | - static public $schemaPropertyDescriptions = []; |
|
77 | + static public $schemaPropertyDescriptions = [ ]; |
|
78 | 78 | |
79 | 79 | /** |
80 | 80 | * The Schema.org composed Google Required Schema for this type |
81 | 81 | * |
82 | 82 | * @var array |
83 | 83 | */ |
84 | - static public $googleRequiredSchema = []; |
|
84 | + static public $googleRequiredSchema = [ ]; |
|
85 | 85 | |
86 | 86 | /** |
87 | 87 | * The Schema.org composed Google Recommended Schema for this type |
88 | 88 | * |
89 | 89 | * @var array |
90 | 90 | */ |
91 | - static public $googleRecommendedSchema = []; |
|
91 | + static public $googleRecommendedSchema = [ ]; |
|
92 | 92 | |
93 | 93 | // Public Properties |
94 | 94 | // ========================================================================= |
@@ -212,18 +212,18 @@ discard block |
||
212 | 212 | * @var array |
213 | 213 | */ |
214 | 214 | static protected $_schemaPropertyExpectedTypes = [ |
215 | - 'diet' => ['Diet'], |
|
216 | - 'distance' => ['Distance'], |
|
217 | - 'exerciseCourse' => ['Place'], |
|
218 | - 'exercisePlan' => ['ExercisePlan'], |
|
219 | - 'exerciseRelatedDiet' => ['Diet'], |
|
220 | - 'exerciseType' => ['Text'], |
|
221 | - 'fromLocation' => ['Place'], |
|
222 | - 'opponent' => ['Person'], |
|
223 | - 'sportsActivityLocation' => ['SportsActivityLocation'], |
|
224 | - 'sportsEvent' => ['SportsEvent'], |
|
225 | - 'sportsTeam' => ['SportsTeam'], |
|
226 | - 'toLocation' => ['Place'] |
|
215 | + 'diet' => [ 'Diet' ], |
|
216 | + 'distance' => [ 'Distance' ], |
|
217 | + 'exerciseCourse' => [ 'Place' ], |
|
218 | + 'exercisePlan' => [ 'ExercisePlan' ], |
|
219 | + 'exerciseRelatedDiet' => [ 'Diet' ], |
|
220 | + 'exerciseType' => [ 'Text' ], |
|
221 | + 'fromLocation' => [ 'Place' ], |
|
222 | + 'opponent' => [ 'Person' ], |
|
223 | + 'sportsActivityLocation' => [ 'SportsActivityLocation' ], |
|
224 | + 'sportsEvent' => [ 'SportsEvent' ], |
|
225 | + 'sportsTeam' => [ 'SportsTeam' ], |
|
226 | + 'toLocation' => [ 'Place' ] |
|
227 | 227 | ]; |
228 | 228 | |
229 | 229 | /** |
@@ -304,9 +304,9 @@ discard block |
||
304 | 304 | { |
305 | 305 | $rules = parent::rules(); |
306 | 306 | $rules = array_merge($rules, [ |
307 | - [['diet','distance','exerciseCourse','exercisePlan','exerciseRelatedDiet','exerciseType','fromLocation','opponent','sportsActivityLocation','sportsEvent','sportsTeam','toLocation'], 'validateJsonSchema'], |
|
308 | - [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'], |
|
309 | - [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.'] |
|
307 | + [ [ 'diet', 'distance', 'exerciseCourse', 'exercisePlan', 'exerciseRelatedDiet', 'exerciseType', 'fromLocation', 'opponent', 'sportsActivityLocation', 'sportsEvent', 'sportsTeam', 'toLocation' ], 'validateJsonSchema' ], |
|
308 | + [ self::$_googleRequiredSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is required by Google.' ], |
|
309 | + [ self::$_googleRecommendedSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is recommended by Google.' ] |
|
310 | 310 | ]); |
311 | 311 | |
312 | 312 | return $rules; |
@@ -164,8 +164,8 @@ discard block |
||
164 | 164 | // ========================================================================= |
165 | 165 | |
166 | 166 | /** |
167 | - * @inheritdoc |
|
168 | - */ |
|
167 | + * @inheritdoc |
|
168 | + */ |
|
169 | 169 | public function init() |
170 | 170 | { |
171 | 171 | parent::init(); |
@@ -196,8 +196,8 @@ discard block |
||
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
199 | - * @inheritdoc |
|
200 | - */ |
|
199 | + * @inheritdoc |
|
200 | + */ |
|
201 | 201 | public function rules() |
202 | 202 | { |
203 | 203 | $rules = parent::rules(); |
@@ -60,35 +60,35 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @var array |
62 | 62 | */ |
63 | - static public $schemaPropertyNames = []; |
|
63 | + static public $schemaPropertyNames = [ ]; |
|
64 | 64 | |
65 | 65 | /** |
66 | 66 | * The Schema.org composed Property Expected Types |
67 | 67 | * |
68 | 68 | * @var array |
69 | 69 | */ |
70 | - static public $schemaPropertyExpectedTypes = []; |
|
70 | + static public $schemaPropertyExpectedTypes = [ ]; |
|
71 | 71 | |
72 | 72 | /** |
73 | 73 | * The Schema.org composed Property Descriptions |
74 | 74 | * |
75 | 75 | * @var array |
76 | 76 | */ |
77 | - static public $schemaPropertyDescriptions = []; |
|
77 | + static public $schemaPropertyDescriptions = [ ]; |
|
78 | 78 | |
79 | 79 | /** |
80 | 80 | * The Schema.org composed Google Required Schema for this type |
81 | 81 | * |
82 | 82 | * @var array |
83 | 83 | */ |
84 | - static public $googleRequiredSchema = []; |
|
84 | + static public $googleRequiredSchema = [ ]; |
|
85 | 85 | |
86 | 86 | /** |
87 | 87 | * The Schema.org composed Google Recommended Schema for this type |
88 | 88 | * |
89 | 89 | * @var array |
90 | 90 | */ |
91 | - static public $googleRecommendedSchema = []; |
|
91 | + static public $googleRecommendedSchema = [ ]; |
|
92 | 92 | |
93 | 93 | // Public Properties |
94 | 94 | // ========================================================================= |
@@ -127,8 +127,8 @@ discard block |
||
127 | 127 | * @var array |
128 | 128 | */ |
129 | 129 | static protected $_schemaPropertyExpectedTypes = [ |
130 | - 'baseSalary' => ['MonetaryAmount','Number','PriceSpecification'], |
|
131 | - 'salaryCurrency' => ['Text'] |
|
130 | + 'baseSalary' => [ 'MonetaryAmount', 'Number', 'PriceSpecification' ], |
|
131 | + 'salaryCurrency' => [ 'Text' ] |
|
132 | 132 | ]; |
133 | 133 | |
134 | 134 | /** |
@@ -199,9 +199,9 @@ discard block |
||
199 | 199 | { |
200 | 200 | $rules = parent::rules(); |
201 | 201 | $rules = array_merge($rules, [ |
202 | - [['baseSalary','salaryCurrency'], 'validateJsonSchema'], |
|
203 | - [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'], |
|
204 | - [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.'] |
|
202 | + [ [ 'baseSalary', 'salaryCurrency' ], 'validateJsonSchema' ], |
|
203 | + [ self::$_googleRequiredSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is required by Google.' ], |
|
204 | + [ self::$_googleRecommendedSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is recommended by Google.' ] |
|
205 | 205 | ]); |
206 | 206 | |
207 | 207 | return $rules; |
@@ -164,8 +164,8 @@ discard block |
||
164 | 164 | // ========================================================================= |
165 | 165 | |
166 | 166 | /** |
167 | - * @inheritdoc |
|
168 | - */ |
|
167 | + * @inheritdoc |
|
168 | + */ |
|
169 | 169 | public function init() |
170 | 170 | { |
171 | 171 | parent::init(); |
@@ -196,8 +196,8 @@ discard block |
||
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
199 | - * @inheritdoc |
|
200 | - */ |
|
199 | + * @inheritdoc |
|
200 | + */ |
|
201 | 201 | public function rules() |
202 | 202 | { |
203 | 203 | $rules = parent::rules(); |