Add missing return type declaration
This commit is contained in:
parent
68d9c6fa3f
commit
00d6e24f31
|
@ -63,7 +63,7 @@ trait Getter
|
||||||
*
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
final public function __isset(string $property)
|
final public function __isset(string $property): bool
|
||||||
{
|
{
|
||||||
return !empty($this->__get($property));
|
return !empty($this->__get($property));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue