fixed virtual property error

This commit is contained in:
2026-04-17 11:08:04 +05:00
parent aca9694723
commit ec370baa45

View File

@@ -310,15 +310,15 @@ final class request
public bool $smartphone { public bool $smartphone {
// Read // Read
get { get {
if (!isset($this->{__PROPERTY__})) { if (!isset($this->smartphone)) {
// The property is not initialized // The property is not initialized
// Writing into the property // Writing into the property
$this->{__PROPERTY__} = new mobile()->isMobile(); $this->smartphone = new mobile()->isMobile();
} }
// Exit (success) // Exit (success)
return $this->{__PROPERTY__}; return $this->smartphone;
} }
} }
@@ -332,15 +332,15 @@ final class request
public bool $tablet { public bool $tablet {
// Read // Read
get { get {
if (!isset($this->{__PROPERTY__})) { if (!isset($this->tablet)) {
// The property is not initialized // The property is not initialized
// Writing into the property // Writing into the property
$this->{__PROPERTY__} = new mobile()->isTablet(); $this->tablet = new mobile()->isTablet();
} }
// Exit (success) // Exit (success)
return $this->{__PROPERTY__}; return $this->tablet;
} }
} }