Passed
Pull Request — v3 (#436)
by Ben
07:13
created
src/models/jsonld/RoofingContractor.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   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@
 block discarded – undo
226 226
     {
227 227
         $rules = parent::rules();
228 228
         $rules = array_merge($rules, [
229
-            [['currenciesAccepted','openingHours','paymentAccepted','priceRange'], 'validateJsonSchema'],
229
+            [['currenciesAccepted', 'openingHours', 'paymentAccepted', 'priceRange'], 'validateJsonSchema'],
230 230
             [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
231 231
             [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
232 232
         ]);
Please login to merge, or discard this patch.
src/models/jsonld/Apartment.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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      * @var array
133 133
      */
134 134
     static protected $_schemaPropertyExpectedTypes = [
135
-        'numberOfRooms' => ['Number','QuantitativeValue'],
135
+        'numberOfRooms' => ['Number', 'QuantitativeValue'],
136 136
         'occupancy' => ['QuantitativeValue']
137 137
     ];
138 138
 
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     {
205 205
         $rules = parent::rules();
206 206
         $rules = array_merge($rules, [
207
-            [['numberOfRooms','occupancy'], 'validateJsonSchema'],
207
+            [['numberOfRooms', 'occupancy'], 'validateJsonSchema'],
208 208
             [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
209 209
             [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
210 210
         ]);
Please login to merge, or discard this patch.
src/models/jsonld/CommentAction.php 1 patch
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.
src/models/jsonld/Motel.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   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -191,11 +191,11 @@  discard block
 block discarded – undo
191 191
     static protected $_schemaPropertyExpectedTypes = [
192 192
         'amenityFeature' => ['LocationFeatureSpecification'],
193 193
         'audience' => ['Audience'],
194
-        'availableLanguage' => ['Language','Text'],
194
+        'availableLanguage' => ['Language', 'Text'],
195 195
         'checkinTime' => ['DateTime'],
196 196
         'checkoutTime' => ['DateTime'],
197
-        'numberOfRooms' => ['Number','QuantitativeValue'],
198
-        'petsAllowed' => ['Boolean','Text'],
197
+        'numberOfRooms' => ['Number', 'QuantitativeValue'],
198
+        'petsAllowed' => ['Boolean', 'Text'],
199 199
         'starRating' => ['Rating']
200 200
     ];
201 201
 
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
     {
274 274
         $rules = parent::rules();
275 275
         $rules = array_merge($rules, [
276
-            [['amenityFeature','audience','availableLanguage','checkinTime','checkoutTime','numberOfRooms','petsAllowed','starRating'], 'validateJsonSchema'],
276
+            [['amenityFeature', 'audience', 'availableLanguage', 'checkinTime', 'checkoutTime', 'numberOfRooms', 'petsAllowed', 'starRating'], 'validateJsonSchema'],
277 277
             [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
278 278
             [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
279 279
         ]);
Please login to merge, or discard this patch.
src/models/jsonld/LoanOrCredit.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   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -190,15 +190,15 @@  discard block
 block discarded – undo
190 190
      * @var array
191 191
      */
192 192
     static protected $_schemaPropertyExpectedTypes = [
193
-        'amount' => ['MonetaryAmount','Number'],
193
+        'amount' => ['MonetaryAmount', 'Number'],
194 194
         'currency' => ['Text'],
195 195
         'gracePeriod' => ['Duration'],
196 196
         'loanRepaymentForm' => ['RepaymentSpecification'],
197 197
         'loanTerm' => ['QuantitativeValue'],
198
-        'loanType' => ['Text','URL'],
198
+        'loanType' => ['Text', 'URL'],
199 199
         'recourseLoan' => ['Boolean'],
200 200
         'renegotiableLoan' => ['Boolean'],
201
-        'requiredCollateral' => ['Text','Thing']
201
+        'requiredCollateral' => ['Text', 'Thing']
202 202
     ];
203 203
 
204 204
     /**
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
     {
277 277
         $rules = parent::rules();
278 278
         $rules = array_merge($rules, [
279
-            [['amount','currency','gracePeriod','loanRepaymentForm','loanTerm','loanType','recourseLoan','renegotiableLoan','requiredCollateral'], 'validateJsonSchema'],
279
+            [['amount', 'currency', 'gracePeriod', 'loanRepaymentForm', 'loanTerm', 'loanType', 'recourseLoan', 'renegotiableLoan', 'requiredCollateral'], 'validateJsonSchema'],
280 280
             [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
281 281
             [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
282 282
         ]);
Please login to merge, or discard this patch.
src/models/jsonld/GovernmentOrganization.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   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -582,56 +582,56 @@  discard block
 block discarded – undo
582 582
      * @var array
583 583
      */
584 584
     static protected $_schemaPropertyExpectedTypes = [
585
-        'actionableFeedbackPolicy' => ['CreativeWork','URL'],
586
-        'address' => ['PostalAddress','Text'],
585
+        'actionableFeedbackPolicy' => ['CreativeWork', 'URL'],
586
+        'address' => ['PostalAddress', 'Text'],
587 587
         'aggregateRating' => ['AggregateRating'],
588 588
         'alumni' => ['Person'],
589
-        'areaServed' => ['AdministrativeArea','GeoShape','Place','Text'],
589
+        'areaServed' => ['AdministrativeArea', 'GeoShape', 'Place', 'Text'],
590 590
         'award' => ['Text'],
591
-        'brand' => ['Brand','Organization'],
591
+        'brand' => ['Brand', 'Organization'],
592 592
         'contactPoint' => ['ContactPoint'],
593
-        'correctionsPolicy' => ['CreativeWork','URL'],
593
+        'correctionsPolicy' => ['CreativeWork', 'URL'],
594 594
         'department' => ['Organization'],
595 595
         'dissolutionDate' => ['Date'],
596
-        'diversityPolicy' => ['CreativeWork','URL'],
597
-        'diversityStaffingReport' => ['Article','URL'],
596
+        'diversityPolicy' => ['CreativeWork', 'URL'],
597
+        'diversityStaffingReport' => ['Article', 'URL'],
598 598
         'duns' => ['Text'],
599 599
         'email' => ['Text'],
600 600
         'employee' => ['Person'],
601
-        'ethicsPolicy' => ['CreativeWork','URL'],
601
+        'ethicsPolicy' => ['CreativeWork', 'URL'],
602 602
         'event' => ['Event'],
603 603
         'faxNumber' => ['Text'],
604 604
         'founder' => ['Person'],
605 605
         'foundingDate' => ['Date'],
606 606
         'foundingLocation' => ['Place'],
607
-        'funder' => ['Organization','Person'],
607
+        'funder' => ['Organization', 'Person'],
608 608
         'globalLocationNumber' => ['Text'],
609 609
         'hasOfferCatalog' => ['OfferCatalog'],
610 610
         'hasPOS' => ['Place'],
611 611
         'isicV4' => ['Text'],
612
-        'knowsAbout' => ['Text','Thing','URL'],
613
-        'knowsLanguage' => ['Language','Text'],
612
+        'knowsAbout' => ['Text', 'Thing', 'URL'],
613
+        'knowsLanguage' => ['Language', 'Text'],
614 614
         'legalName' => ['Text'],
615 615
         'leiCode' => ['Text'],
616
-        'location' => ['Place','PostalAddress','Text'],
617
-        'logo' => ['ImageObject','URL'],
616
+        'location' => ['Place', 'PostalAddress', 'Text'],
617
+        'logo' => ['ImageObject', 'URL'],
618 618
         'makesOffer' => ['Offer'],
619
-        'member' => ['Organization','Person'],
620
-        'memberOf' => ['Organization','ProgramMembership'],
619
+        'member' => ['Organization', 'Person'],
620
+        'memberOf' => ['Organization', 'ProgramMembership'],
621 621
         'naics' => ['Text'],
622 622
         'numberOfEmployees' => ['QuantitativeValue'],
623
-        'ownershipFundingInfo' => ['AboutPage','CreativeWork','Text','URL'],
624
-        'owns' => ['OwnershipInfo','Product'],
623
+        'ownershipFundingInfo' => ['AboutPage', 'CreativeWork', 'Text', 'URL'],
624
+        'owns' => ['OwnershipInfo', 'Product'],
625 625
         'parentOrganization' => ['Organization'],
626
-        'publishingPrinciples' => ['CreativeWork','URL'],
626
+        'publishingPrinciples' => ['CreativeWork', 'URL'],
627 627
         'review' => ['Review'],
628 628
         'seeks' => ['Demand'],
629 629
         'slogan' => ['Text'],
630
-        'sponsor' => ['Organization','Person'],
630
+        'sponsor' => ['Organization', 'Person'],
631 631
         'subOrganization' => ['Organization'],
632 632
         'taxID' => ['Text'],
633 633
         'telephone' => ['Text'],
634
-        'unnamedSourcesPolicy' => ['CreativeWork','URL'],
634
+        'unnamedSourcesPolicy' => ['CreativeWork', 'URL'],
635 635
         'vatID' => ['Text']
636 636
     ];
637 637
 
@@ -752,7 +752,7 @@  discard block
 block discarded – undo
752 752
     {
753 753
         $rules = parent::rules();
754 754
         $rules = array_merge($rules, [
755
-            [['actionableFeedbackPolicy','address','aggregateRating','alumni','areaServed','award','brand','contactPoint','correctionsPolicy','department','dissolutionDate','diversityPolicy','diversityStaffingReport','duns','email','employee','ethicsPolicy','event','faxNumber','founder','foundingDate','foundingLocation','funder','globalLocationNumber','hasOfferCatalog','hasPOS','isicV4','knowsAbout','knowsLanguage','legalName','leiCode','location','logo','makesOffer','member','memberOf','naics','numberOfEmployees','ownershipFundingInfo','owns','parentOrganization','publishingPrinciples','review','seeks','slogan','sponsor','subOrganization','taxID','telephone','unnamedSourcesPolicy','vatID'], 'validateJsonSchema'],
755
+            [['actionableFeedbackPolicy', 'address', 'aggregateRating', 'alumni', 'areaServed', 'award', 'brand', 'contactPoint', 'correctionsPolicy', 'department', 'dissolutionDate', 'diversityPolicy', 'diversityStaffingReport', 'duns', 'email', 'employee', 'ethicsPolicy', 'event', 'faxNumber', 'founder', 'foundingDate', 'foundingLocation', 'funder', 'globalLocationNumber', 'hasOfferCatalog', 'hasPOS', 'isicV4', 'knowsAbout', 'knowsLanguage', 'legalName', 'leiCode', 'location', 'logo', 'makesOffer', 'member', 'memberOf', 'naics', 'numberOfEmployees', 'ownershipFundingInfo', 'owns', 'parentOrganization', 'publishingPrinciples', 'review', 'seeks', 'slogan', 'sponsor', 'subOrganization', 'taxID', 'telephone', 'unnamedSourcesPolicy', 'vatID'], 'validateJsonSchema'],
756 756
             [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
757 757
             [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
758 758
         ]);
Please login to merge, or discard this patch.
src/models/jsonld/ConfirmAction.php 1 patch
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.
src/models/jsonld/Person.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   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -578,15 +578,15 @@  discard block
 block discarded – undo
578 578
      */
579 579
     static protected $_schemaPropertyExpectedTypes = [
580 580
         'additionalName' => ['Text'],
581
-        'address' => ['PostalAddress','Text'],
581
+        'address' => ['PostalAddress', 'Text'],
582 582
         'affiliation' => ['Organization'],
583
-        'alumniOf' => ['EducationalOrganization','Organization'],
583
+        'alumniOf' => ['EducationalOrganization', 'Organization'],
584 584
         'award' => ['Text'],
585 585
         'birthDate' => ['Date'],
586 586
         'birthPlace' => ['Place'],
587
-        'brand' => ['Brand','Organization'],
587
+        'brand' => ['Brand', 'Organization'],
588 588
         'children' => ['Person'],
589
-        'colleague' => ['Person','URL'],
589
+        'colleague' => ['Person', 'URL'],
590 590
         'contactPoint' => ['ContactPoint'],
591 591
         'deathDate' => ['Date'],
592 592
         'deathPlace' => ['Place'],
@@ -595,41 +595,41 @@  discard block
 block discarded – undo
595 595
         'familyName' => ['Text'],
596 596
         'faxNumber' => ['Text'],
597 597
         'follows' => ['Person'],
598
-        'funder' => ['Organization','Person'],
599
-        'gender' => ['GenderType','Text'],
598
+        'funder' => ['Organization', 'Person'],
599
+        'gender' => ['GenderType', 'Text'],
600 600
         'givenName' => ['Text'],
601 601
         'globalLocationNumber' => ['Text'],
602 602
         'hasOccupation' => ['Occupation'],
603 603
         'hasOfferCatalog' => ['OfferCatalog'],
604 604
         'hasPOS' => ['Place'],
605
-        'height' => ['Distance','QuantitativeValue'],
606
-        'homeLocation' => ['ContactPoint','Place'],
605
+        'height' => ['Distance', 'QuantitativeValue'],
606
+        'homeLocation' => ['ContactPoint', 'Place'],
607 607
         'honorificPrefix' => ['Text'],
608 608
         'honorificSuffix' => ['Text'],
609 609
         'isicV4' => ['Text'],
610 610
         'jobTitle' => ['Text'],
611 611
         'knows' => ['Person'],
612
-        'knowsAbout' => ['Text','Thing','URL'],
613
-        'knowsLanguage' => ['Language','Text'],
612
+        'knowsAbout' => ['Text', 'Thing', 'URL'],
613
+        'knowsLanguage' => ['Language', 'Text'],
614 614
         'makesOffer' => ['Offer'],
615
-        'memberOf' => ['Organization','ProgramMembership'],
615
+        'memberOf' => ['Organization', 'ProgramMembership'],
616 616
         'naics' => ['Text'],
617 617
         'nationality' => ['Country'],
618
-        'netWorth' => ['MonetaryAmount','PriceSpecification'],
619
-        'owns' => ['OwnershipInfo','Product'],
618
+        'netWorth' => ['MonetaryAmount', 'PriceSpecification'],
619
+        'owns' => ['OwnershipInfo', 'Product'],
620 620
         'parent' => ['Person'],
621 621
         'performerIn' => ['Event'],
622
-        'publishingPrinciples' => ['CreativeWork','URL'],
622
+        'publishingPrinciples' => ['CreativeWork', 'URL'],
623 623
         'relatedTo' => ['Person'],
624 624
         'seeks' => ['Demand'],
625 625
         'sibling' => ['Person'],
626
-        'sponsor' => ['Organization','Person'],
626
+        'sponsor' => ['Organization', 'Person'],
627 627
         'spouse' => ['Person'],
628 628
         'taxID' => ['Text'],
629 629
         'telephone' => ['Text'],
630 630
         'vatID' => ['Text'],
631 631
         'weight' => ['QuantitativeValue'],
632
-        'workLocation' => ['ContactPoint','Place'],
632
+        'workLocation' => ['ContactPoint', 'Place'],
633 633
         'worksFor' => ['Organization']
634 634
     ];
635 635
 
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
     {
754 754
         $rules = parent::rules();
755 755
         $rules = array_merge($rules, [
756
-            [['additionalName','address','affiliation','alumniOf','award','birthDate','birthPlace','brand','children','colleague','contactPoint','deathDate','deathPlace','duns','email','familyName','faxNumber','follows','funder','gender','givenName','globalLocationNumber','hasOccupation','hasOfferCatalog','hasPOS','height','homeLocation','honorificPrefix','honorificSuffix','isicV4','jobTitle','knows','knowsAbout','knowsLanguage','makesOffer','memberOf','naics','nationality','netWorth','owns','parent','performerIn','publishingPrinciples','relatedTo','seeks','sibling','sponsor','spouse','taxID','telephone','vatID','weight','workLocation','worksFor'], 'validateJsonSchema'],
756
+            [['additionalName', 'address', 'affiliation', 'alumniOf', 'award', 'birthDate', 'birthPlace', 'brand', 'children', 'colleague', 'contactPoint', 'deathDate', 'deathPlace', 'duns', 'email', 'familyName', 'faxNumber', 'follows', 'funder', 'gender', 'givenName', 'globalLocationNumber', 'hasOccupation', 'hasOfferCatalog', 'hasPOS', 'height', 'homeLocation', 'honorificPrefix', 'honorificSuffix', 'isicV4', 'jobTitle', 'knows', 'knowsAbout', 'knowsLanguage', 'makesOffer', 'memberOf', 'naics', 'nationality', 'netWorth', 'owns', 'parent', 'performerIn', 'publishingPrinciples', 'relatedTo', 'seeks', 'sibling', 'sponsor', 'spouse', 'taxID', 'telephone', 'vatID', 'weight', 'workLocation', 'worksFor'], 'validateJsonSchema'],
757 757
             [self::$_googleRequiredSchema, 'required', 'on' => ['google'], 'message' => 'This property is required by Google.'],
758 758
             [self::$_googleRecommendedSchema, 'required', 'on' => ['google'], 'message' => 'This property is recommended by Google.']
759 759
         ]);
Please login to merge, or discard this patch.
src/models/jsonld/PrependAction.php 1 patch
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.