Updated ArrayGet.php

This commit is contained in:
Netkas 2022-12-29 16:04:59 -05:00
parent 5a6f406ec7
commit 8ea2ddd21d

View file

@ -42,13 +42,11 @@
return InstructionType::ArrayGet; return InstructionType::ArrayGet;
} }
/** /**
* @return mixed * @return mixed
* @noinspection PhpMissingReturnTypeInspection
* @noinspection PhpUnused * @noinspection PhpUnused
*/ */
public function getArray() public function getArray(): mixed
{ {
return $this->Array; return $this->Array;
} }
@ -65,9 +63,8 @@
/** /**
* @return mixed * @return mixed
* @noinspection PhpMissingReturnTypeInspection
*/ */
public function getValue() public function getValue(): mixed
{ {
return $this->Value; return $this->Value;
} }