Passed
Push — develop ( 226eab...8c89fd )
by Andrew
10:33 queued 05:02
created
src/models/jsonld/TVClip.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    * @inheritdoc
200
-    */
199
+     * @inheritdoc
200
+     */
201 201
     public function rules()
202 202
     {
203 203
         $rules = parent::rules();
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -59,35 +59,35 @@  discard block
 block discarded – undo
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
     // =========================================================================
@@ -170,13 +170,13 @@  discard block
 block discarded – undo
170 170
      * @var array
171 171
      */
172 172
     static protected $_schemaPropertyExpectedTypes = [
173
-        'actor' => ['Person'],
174
-        'clipNumber' => ['Integer','Text'],
175
-        'director' => ['Person'],
176
-        'musicBy' => ['MusicGroup','Person'],
177
-        'partOfEpisode' => ['Episode'],
178
-        'partOfSeason' => ['CreativeWorkSeason'],
179
-        'partOfSeries' => ['CreativeWorkSeries']
173
+        'actor' => [ 'Person' ],
174
+        'clipNumber' => [ 'Integer', 'Text' ],
175
+        'director' => [ 'Person' ],
176
+        'musicBy' => [ 'MusicGroup', 'Person' ],
177
+        'partOfEpisode' => [ 'Episode' ],
178
+        'partOfSeason' => [ 'CreativeWorkSeason' ],
179
+        'partOfSeries' => [ 'CreativeWorkSeries' ]
180 180
     ];
181 181
 
182 182
     /**
@@ -252,9 +252,9 @@  discard block
 block discarded – undo
252 252
     {
253 253
         $rules = parent::rules();
254 254
         $rules = array_merge($rules, [
255
-            [['actor','clipNumber','director','musicBy','partOfEpisode','partOfSeason','partOfSeries'], 'validateJsonSchema'],
256
-            [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
257
-            [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
255
+            [ [ 'actor', 'clipNumber', 'director', 'musicBy', 'partOfEpisode', 'partOfSeason', 'partOfSeries' ], 'validateJsonSchema' ],
256
+            [ self::$_googleRequiredSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is required by Google.' ],
257
+            [ self::$_googleRecommendedSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is recommended by Google.' ]
258 258
         ]);
259 259
 
260 260
         return $rules;
Please login to merge, or discard this patch.
src/models/jsonld/AcceptAction.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    * @inheritdoc
200
-    */
199
+     * @inheritdoc
200
+     */
201 201
     public function rules()
202 202
     {
203 203
         $rules = parent::rules();
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -60,35 +60,35 @@  discard block
 block discarded – undo
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
     // =========================================================================
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      * @var array
119 119
      */
120 120
     static protected $_schemaPropertyExpectedTypes = [
121
-        'purpose' => ['MedicalDevicePurpose','Thing']
121
+        'purpose' => [ 'MedicalDevicePurpose', 'Thing' ]
122 122
     ];
123 123
 
124 124
     /**
@@ -188,9 +188,9 @@  discard block
 block discarded – undo
188 188
     {
189 189
         $rules = parent::rules();
190 190
         $rules = array_merge($rules, [
191
-            [['purpose'], 'validateJsonSchema'],
192
-            [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
193
-            [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
191
+            [ [ 'purpose' ], 'validateJsonSchema' ],
192
+            [ self::$_googleRequiredSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is required by Google.' ],
193
+            [ self::$_googleRecommendedSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is recommended by Google.' ]
194 194
         ]);
195 195
 
196 196
         return $rules;
Please login to merge, or discard this patch.
src/models/jsonld/WPAdBlock.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    * @inheritdoc
200
-    */
199
+     * @inheritdoc
200
+     */
201 201
     public function rules()
202 202
     {
203 203
         $rules = parent::rules();
Please login to merge, or discard this patch.
Spacing   +90 added lines, -90 removed lines patch added patch discarded remove patch
@@ -59,35 +59,35 @@  discard block
 block discarded – undo
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
     // =========================================================================
@@ -868,88 +868,88 @@  discard block
 block discarded – undo
868 868
      * @var array
869 869
      */
870 870
     static protected $_schemaPropertyExpectedTypes = [
871
-        'about' => ['Thing'],
872
-        'accessMode' => ['Text'],
873
-        'accessModeSufficient' => ['Text'],
874
-        'accessibilityAPI' => ['Text'],
875
-        'accessibilityControl' => ['Text'],
876
-        'accessibilityFeature' => ['Text'],
877
-        'accessibilityHazard' => ['Text'],
878
-        'accessibilitySummary' => ['Text'],
879
-        'accountablePerson' => ['Person'],
880
-        'aggregateRating' => ['AggregateRating'],
881
-        'alternativeHeadline' => ['Text'],
882
-        'associatedMedia' => ['MediaObject'],
883
-        'audience' => ['Audience'],
884
-        'audio' => ['AudioObject'],
885
-        'author' => ['Organization','Person'],
886
-        'award' => ['Text'],
887
-        'character' => ['Person'],
888
-        'citation' => ['CreativeWork','Text'],
889
-        'comment' => ['Comment'],
890
-        'commentCount' => ['Integer'],
891
-        'contentLocation' => ['Place'],
892
-        'contentRating' => ['Text'],
893
-        'contentReferenceTime' => ['DateTime'],
894
-        'contributor' => ['Organization','Person'],
895
-        'copyrightHolder' => ['Organization','Person'],
896
-        'copyrightYear' => ['Number'],
897
-        'creator' => ['Organization','Person'],
898
-        'dateCreated' => ['Date','DateTime'],
899
-        'dateModified' => ['Date','DateTime'],
900
-        'datePublished' => ['Date'],
901
-        'discussionUrl' => ['URL'],
902
-        'editor' => ['Person'],
903
-        'educationalAlignment' => ['AlignmentObject'],
904
-        'educationalUse' => ['Text'],
905
-        'encoding' => ['MediaObject'],
906
-        'exampleOfWork' => ['CreativeWork'],
907
-        'expires' => ['Date'],
908
-        'fileFormat' => ['Text','URL'],
909
-        'funder' => ['Organization','Person'],
910
-        'genre' => ['Text','URL'],
911
-        'hasPart' => ['CreativeWork'],
912
-        'headline' => ['Text'],
913
-        'inLanguage' => ['Language','Text'],
914
-        'interactionStatistic' => ['InteractionCounter'],
915
-        'interactivityType' => ['Text'],
916
-        'isAccessibleForFree' => ['Boolean'],
917
-        'isBasedOn' => ['CreativeWork','Product','URL'],
918
-        'isFamilyFriendly' => ['Boolean'],
919
-        'isPartOf' => ['CreativeWork'],
920
-        'keywords' => ['Text'],
921
-        'learningResourceType' => ['Text'],
922
-        'license' => ['CreativeWork','URL'],
923
-        'locationCreated' => ['Place'],
924
-        'mainEntity' => ['Thing'],
925
-        'material' => ['Product','Text','URL'],
926
-        'mentions' => ['Thing'],
927
-        'offers' => ['Offer'],
928
-        'position' => ['Integer','Text'],
929
-        'producer' => ['Organization','Person'],
930
-        'provider' => ['Organization','Person'],
931
-        'publication' => ['PublicationEvent'],
932
-        'publisher' => ['Organization','Person'],
933
-        'publisherImprint' => ['Organization'],
934
-        'publishingPrinciples' => ['CreativeWork','URL'],
935
-        'recordedAt' => ['Event'],
936
-        'releasedEvent' => ['PublicationEvent'],
937
-        'review' => ['Review'],
938
-        'schemaVersion' => ['Text','URL'],
939
-        'sourceOrganization' => ['Organization'],
940
-        'spatialCoverage' => ['Place'],
941
-        'sponsor' => ['Organization','Person'],
942
-        'temporalCoverage' => ['DateTime','Text','URL'],
943
-        'text' => ['Text'],
944
-        'thumbnailUrl' => ['URL'],
945
-        'timeRequired' => ['Duration'],
946
-        'translationOfWork' => ['CreativeWork'],
947
-        'translator' => ['Organization','Person'],
948
-        'typicalAgeRange' => ['Text'],
949
-        'version' => ['Number','Text'],
950
-        'video' => ['VideoObject'],
951
-        'workExample' => ['CreativeWork'],
952
-        'workTranslation' => ['CreativeWork']
871
+        'about' => [ 'Thing' ],
872
+        'accessMode' => [ 'Text' ],
873
+        'accessModeSufficient' => [ 'Text' ],
874
+        'accessibilityAPI' => [ 'Text' ],
875
+        'accessibilityControl' => [ 'Text' ],
876
+        'accessibilityFeature' => [ 'Text' ],
877
+        'accessibilityHazard' => [ 'Text' ],
878
+        'accessibilitySummary' => [ 'Text' ],
879
+        'accountablePerson' => [ 'Person' ],
880
+        'aggregateRating' => [ 'AggregateRating' ],
881
+        'alternativeHeadline' => [ 'Text' ],
882
+        'associatedMedia' => [ 'MediaObject' ],
883
+        'audience' => [ 'Audience' ],
884
+        'audio' => [ 'AudioObject' ],
885
+        'author' => [ 'Organization', 'Person' ],
886
+        'award' => [ 'Text' ],
887
+        'character' => [ 'Person' ],
888
+        'citation' => [ 'CreativeWork', 'Text' ],
889
+        'comment' => [ 'Comment' ],
890
+        'commentCount' => [ 'Integer' ],
891
+        'contentLocation' => [ 'Place' ],
892
+        'contentRating' => [ 'Text' ],
893
+        'contentReferenceTime' => [ 'DateTime' ],
894
+        'contributor' => [ 'Organization', 'Person' ],
895
+        'copyrightHolder' => [ 'Organization', 'Person' ],
896
+        'copyrightYear' => [ 'Number' ],
897
+        'creator' => [ 'Organization', 'Person' ],
898
+        'dateCreated' => [ 'Date', 'DateTime' ],
899
+        'dateModified' => [ 'Date', 'DateTime' ],
900
+        'datePublished' => [ 'Date' ],
901
+        'discussionUrl' => [ 'URL' ],
902
+        'editor' => [ 'Person' ],
903
+        'educationalAlignment' => [ 'AlignmentObject' ],
904
+        'educationalUse' => [ 'Text' ],
905
+        'encoding' => [ 'MediaObject' ],
906
+        'exampleOfWork' => [ 'CreativeWork' ],
907
+        'expires' => [ 'Date' ],
908
+        'fileFormat' => [ 'Text', 'URL' ],
909
+        'funder' => [ 'Organization', 'Person' ],
910
+        'genre' => [ 'Text', 'URL' ],
911
+        'hasPart' => [ 'CreativeWork' ],
912
+        'headline' => [ 'Text' ],
913
+        'inLanguage' => [ 'Language', 'Text' ],
914
+        'interactionStatistic' => [ 'InteractionCounter' ],
915
+        'interactivityType' => [ 'Text' ],
916
+        'isAccessibleForFree' => [ 'Boolean' ],
917
+        'isBasedOn' => [ 'CreativeWork', 'Product', 'URL' ],
918
+        'isFamilyFriendly' => [ 'Boolean' ],
919
+        'isPartOf' => [ 'CreativeWork' ],
920
+        'keywords' => [ 'Text' ],
921
+        'learningResourceType' => [ 'Text' ],
922
+        'license' => [ 'CreativeWork', 'URL' ],
923
+        'locationCreated' => [ 'Place' ],
924
+        'mainEntity' => [ 'Thing' ],
925
+        'material' => [ 'Product', 'Text', 'URL' ],
926
+        'mentions' => [ 'Thing' ],
927
+        'offers' => [ 'Offer' ],
928
+        'position' => [ 'Integer', 'Text' ],
929
+        'producer' => [ 'Organization', 'Person' ],
930
+        'provider' => [ 'Organization', 'Person' ],
931
+        'publication' => [ 'PublicationEvent' ],
932
+        'publisher' => [ 'Organization', 'Person' ],
933
+        'publisherImprint' => [ 'Organization' ],
934
+        'publishingPrinciples' => [ 'CreativeWork', 'URL' ],
935
+        'recordedAt' => [ 'Event' ],
936
+        'releasedEvent' => [ 'PublicationEvent' ],
937
+        'review' => [ 'Review' ],
938
+        'schemaVersion' => [ 'Text', 'URL' ],
939
+        'sourceOrganization' => [ 'Organization' ],
940
+        'spatialCoverage' => [ 'Place' ],
941
+        'sponsor' => [ 'Organization', 'Person' ],
942
+        'temporalCoverage' => [ 'DateTime', 'Text', 'URL' ],
943
+        'text' => [ 'Text' ],
944
+        'thumbnailUrl' => [ 'URL' ],
945
+        'timeRequired' => [ 'Duration' ],
946
+        'translationOfWork' => [ 'CreativeWork' ],
947
+        'translator' => [ 'Organization', 'Person' ],
948
+        'typicalAgeRange' => [ 'Text' ],
949
+        'version' => [ 'Number', 'Text' ],
950
+        'video' => [ 'VideoObject' ],
951
+        'workExample' => [ 'CreativeWork' ],
952
+        'workTranslation' => [ 'CreativeWork' ]
953 953
     ];
954 954
 
955 955
     /**
@@ -1100,9 +1100,9 @@  discard block
 block discarded – undo
1100 1100
     {
1101 1101
         $rules = parent::rules();
1102 1102
         $rules = array_merge($rules, [
1103
-            [['about','accessMode','accessModeSufficient','accessibilityAPI','accessibilityControl','accessibilityFeature','accessibilityHazard','accessibilitySummary','accountablePerson','aggregateRating','alternativeHeadline','associatedMedia','audience','audio','author','award','character','citation','comment','commentCount','contentLocation','contentRating','contentReferenceTime','contributor','copyrightHolder','copyrightYear','creator','dateCreated','dateModified','datePublished','discussionUrl','editor','educationalAlignment','educationalUse','encoding','exampleOfWork','expires','fileFormat','funder','genre','hasPart','headline','inLanguage','interactionStatistic','interactivityType','isAccessibleForFree','isBasedOn','isFamilyFriendly','isPartOf','keywords','learningResourceType','license','locationCreated','mainEntity','material','mentions','offers','position','producer','provider','publication','publisher','publisherImprint','publishingPrinciples','recordedAt','releasedEvent','review','schemaVersion','sourceOrganization','spatialCoverage','sponsor','temporalCoverage','text','thumbnailUrl','timeRequired','translationOfWork','translator','typicalAgeRange','version','video','workExample','workTranslation'], 'validateJsonSchema'],
1104
-            [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
1105
-            [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
1103
+            [ [ 'about', 'accessMode', 'accessModeSufficient', 'accessibilityAPI', 'accessibilityControl', 'accessibilityFeature', 'accessibilityHazard', 'accessibilitySummary', 'accountablePerson', 'aggregateRating', 'alternativeHeadline', 'associatedMedia', 'audience', 'audio', 'author', 'award', 'character', 'citation', 'comment', 'commentCount', 'contentLocation', 'contentRating', 'contentReferenceTime', 'contributor', 'copyrightHolder', 'copyrightYear', 'creator', 'dateCreated', 'dateModified', 'datePublished', 'discussionUrl', 'editor', 'educationalAlignment', 'educationalUse', 'encoding', 'exampleOfWork', 'expires', 'fileFormat', 'funder', 'genre', 'hasPart', 'headline', 'inLanguage', 'interactionStatistic', 'interactivityType', 'isAccessibleForFree', 'isBasedOn', 'isFamilyFriendly', 'isPartOf', 'keywords', 'learningResourceType', 'license', 'locationCreated', 'mainEntity', 'material', 'mentions', 'offers', 'position', 'producer', 'provider', 'publication', 'publisher', 'publisherImprint', 'publishingPrinciples', 'recordedAt', 'releasedEvent', 'review', 'schemaVersion', 'sourceOrganization', 'spatialCoverage', 'sponsor', 'temporalCoverage', 'text', 'thumbnailUrl', 'timeRequired', 'translationOfWork', 'translator', 'typicalAgeRange', 'version', 'video', 'workExample', 'workTranslation' ], 'validateJsonSchema' ],
1104
+            [ self::$_googleRequiredSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is required by Google.' ],
1105
+            [ self::$_googleRecommendedSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is recommended by Google.' ]
1106 1106
         ]);
1107 1107
 
1108 1108
         return $rules;
Please login to merge, or discard this patch.
src/models/jsonld/MapCategoryType.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    * @inheritdoc
200
-    */
199
+     * @inheritdoc
200
+     */
201 201
     public function rules()
202 202
     {
203 203
         $rules = parent::rules();
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -59,35 +59,35 @@  discard block
 block discarded – undo
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
     // =========================================================================
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      * @var array
119 119
      */
120 120
     static protected $_schemaPropertyExpectedTypes = [
121
-        'supersededBy' => ['Class','Enumeration','Property']
121
+        'supersededBy' => [ 'Class', 'Enumeration', 'Property' ]
122 122
     ];
123 123
 
124 124
     /**
@@ -188,9 +188,9 @@  discard block
 block discarded – undo
188 188
     {
189 189
         $rules = parent::rules();
190 190
         $rules = array_merge($rules, [
191
-            [['supersededBy'], 'validateJsonSchema'],
192
-            [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
193
-            [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
191
+            [ [ 'supersededBy' ], 'validateJsonSchema' ],
192
+            [ self::$_googleRequiredSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is required by Google.' ],
193
+            [ self::$_googleRecommendedSchema, 'required', 'on' => [ 'google' ], 'message' => 'This property is recommended by Google.' ]
194 194
         ]);
195 195
 
196 196
         return $rules;
Please login to merge, or discard this patch.
src/models/jsonld/BowlingAlley.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    * @inheritdoc
200
-    */
199
+     * @inheritdoc
200
+     */
201 201
     public function rules()
202 202
     {
203 203
         $rules = parent::rules();
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -59,35 +59,35 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/models/jsonld/Casino.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    * @inheritdoc
200
-    */
199
+     * @inheritdoc
200
+     */
201 201
     public function rules()
202 202
     {
203 203
         $rules = parent::rules();
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -59,35 +59,35 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/models/jsonld/AdministrativeArea.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    * @inheritdoc
200
-    */
199
+     * @inheritdoc
200
+     */
201 201
     public function rules()
202 202
     {
203 203
         $rules = parent::rules();
Please login to merge, or discard this patch.
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -59,35 +59,35 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/models/jsonld/HomeAndConstructionBusiness.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    * @inheritdoc
200
-    */
199
+     * @inheritdoc
200
+     */
201 201
     public function rules()
202 202
     {
203 203
         $rules = parent::rules();
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -59,35 +59,35 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/models/jsonld/StadiumOrArena.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    * @inheritdoc
200
-    */
199
+     * @inheritdoc
200
+     */
201 201
     public function rules()
202 202
     {
203 203
         $rules = parent::rules();
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -59,35 +59,35 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.