@@ -249,17 +249,17 @@ public function __construct(
249249 public function __get (string $ name ): mixed
250250 {
251251 return match ($ name ) {
252- 'hidden ' => $ this ->getHidden (),
253- 'hiddenKey ' => $ this ->getHiddenKey (),
252+ 'hidden ' => $ this ->getHidden (),
253+ 'hiddenKey ' => $ this ->getHiddenKey (),
254254 'hiddenStart ' => $ this ->getHiddenStart (),
255- 'hiddenEnd ' => $ this ->getHiddenEnd (),
256- 'dotKey ' => $ this ->getDotKey (),
257- 'slashKey ' => $ this ->getSlashKey (),
258- 'dashKey ' => $ this ->getDashKey (),
259- 'escape ' => $ this ->getEscape (),
260- 'encode ' => $ this ->getEncode (),
261- 'onFail ' => $ this ->getOnFail (),
262- default => throw new InvalidArgumentException ("Unknown property: {$ name }" ),
255+ 'hiddenEnd ' => $ this ->getHiddenEnd (),
256+ 'dotKey ' => $ this ->getDotKey (),
257+ 'slashKey ' => $ this ->getSlashKey (),
258+ 'dashKey ' => $ this ->getDashKey (),
259+ 'escape ' => $ this ->getEscape (),
260+ 'encode ' => $ this ->getEncode (),
261+ 'onFail ' => $ this ->getOnFail (),
262+ default => throw new InvalidArgumentException ("Unknown property: {$ name }" ),
263263 };
264264 }
265265
@@ -269,17 +269,17 @@ public function __get(string $name): mixed
269269 public function __set (string $ name , mixed $ value ): void
270270 {
271271 match ($ name ) {
272- 'hidden ' => $ this ->setHidden ($ value ), // @phpstan-ignore-line argument.type
273- 'hiddenKey ' => $ this ->setHiddenKey ($ value ), // @phpstan-ignore-line method.notFound
272+ 'hidden ' => $ this ->setHidden ($ value ), // @phpstan-ignore-line argument.type
273+ 'hiddenKey ' => $ this ->setHiddenKey ($ value ), // @phpstan-ignore-line method.notFound
274274 'hiddenStart ' => $ this ->setHiddenStart ($ value ), // @phpstan-ignore-line method.notFound
275- 'hiddenEnd ' => $ this ->setHiddenEnd ($ value ), // @phpstan-ignore-line method.notFound
276- 'dotKey ' => $ this ->setDotKey ($ value ), // @phpstan-ignore-line method.notFound
277- 'slashKey ' => $ this ->setSlashKey ($ value ), // @phpstan-ignore-line method.notFound
278- 'dashKey ' => $ this ->setDashKey ($ value ), // @phpstan-ignore-line method.notFound
279- 'escape ' => $ this ->setEscape ($ value ), // @phpstan-ignore-line argument.type
280- 'encode ' => $ this ->setEncode ($ value ), // @phpstan-ignore-line argument.type
281- 'onFail ' => $ this ->setOnFail ($ value ), // @phpstan-ignore-line argument.type
282- default => throw new InvalidArgumentException ("Unknown property: {$ name }" ),
275+ 'hiddenEnd ' => $ this ->setHiddenEnd ($ value ), // @phpstan-ignore-line method.notFound
276+ 'dotKey ' => $ this ->setDotKey ($ value ), // @phpstan-ignore-line method.notFound
277+ 'slashKey ' => $ this ->setSlashKey ($ value ), // @phpstan-ignore-line method.notFound
278+ 'dashKey ' => $ this ->setDashKey ($ value ), // @phpstan-ignore-line method.notFound
279+ 'escape ' => $ this ->setEscape ($ value ), // @phpstan-ignore-line argument.type
280+ 'encode ' => $ this ->setEncode ($ value ), // @phpstan-ignore-line argument.type
281+ 'onFail ' => $ this ->setOnFail ($ value ), // @phpstan-ignore-line argument.type
282+ default => throw new InvalidArgumentException ("Unknown property: {$ name }" ),
283283 };
284284 }
285285
0 commit comments