ALPHA 3.0.2a

This commit is contained in:
TheGamecraft
2018-09-10 08:51:18 -04:00
parent 7fe13ae0a7
commit 0e0ef86b71
1404 changed files with 10604 additions and 33714 deletions

View File

@@ -44,7 +44,7 @@ class ReflectionLanguageConstructParameter extends \ReflectionParameter
*/
public function isArray()
{
return array_key_exists('isArray', $this->opts) && $this->opts['isArray'];
return \array_key_exists('isArray', $this->opts) && $this->opts['isArray'];
}
/**
@@ -76,7 +76,7 @@ class ReflectionLanguageConstructParameter extends \ReflectionParameter
*/
public function isOptional()
{
return array_key_exists('isOptional', $this->opts) && $this->opts['isOptional'];
return \array_key_exists('isOptional', $this->opts) && $this->opts['isOptional'];
}
/**
@@ -86,7 +86,7 @@ class ReflectionLanguageConstructParameter extends \ReflectionParameter
*/
public function isDefaultValueAvailable()
{
return array_key_exists('defaultValue', $this->opts);
return \array_key_exists('defaultValue', $this->opts);
}
/**
@@ -98,6 +98,6 @@ class ReflectionLanguageConstructParameter extends \ReflectionParameter
*/
public function isPassedByReference()
{
return array_key_exists('isPassedByReference', $this->opts) && $this->opts['isPassedByReference'];
return \array_key_exists('isPassedByReference', $this->opts) && $this->opts['isPassedByReference'];
}
}