File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 2626 <rule ref =" SlevomatCodingStandard.Namespaces.AlphabeticallySortedUses" />
2727 <rule ref =" SlevomatCodingStandard.Namespaces.UnusedUses" />
2828 <rule ref =" SlevomatCodingStandard.Namespaces.UnusedUses" />
29+ <rule ref =" SlevomatCodingStandard.TypeHints.ParameterTypeHint" />
30+ <rule ref =" SlevomatCodingStandard.TypeHints.PropertyTypeHint" />
31+ <rule ref =" SlevomatCodingStandard.TypeHints.ReturnTypeHint" />
2932</ruleset >
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ public function getIterator(): \Iterator
7373 return new \ArrayIterator ($ this ->value );
7474 }
7575
76+ // phpcs:disable SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint
7677 /**
7778 * @param int $offset
7879 */
@@ -112,4 +113,5 @@ public function offsetUnset($offset): void
112113 {
113114 unset($ this ->value [$ offset ]);
114115 }
116+ // phpcs:enable SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint
115117}
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ public function getParameters(): object
2929 return $ this ->parameters ;
3030 }
3131
32+ // phpcs:disable SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint
3233 /**
3334 * @param int $offset
3435 */
@@ -77,4 +78,5 @@ public function offsetUnset($offset): void
7778 $ this ->parameters = new Parameters ();
7879 }
7980 }
81+ // phpcs:enable SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint
8082}
You can’t perform that action at this time.
0 commit comments