Updated ArrayGet.php
This commit is contained in:
parent
5a6f406ec7
commit
8ea2ddd21d
1 changed files with 2 additions and 5 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue