Add missing return type declaration

This commit is contained in:
Sebastian Meyer 2023-09-29 19:27:16 +02:00
parent 68d9c6fa3f
commit 00d6e24f31
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ trait Getter
*
* @return bool
*/
final public function __isset(string $property)
final public function __isset(string $property): bool
{
return !empty($this->__get($property));
}