diff --git a/tests/phpt/property_accessors.phpt b/tests/phpt/property_accessors.phpt index 140d5f7..d5d3234 100644 --- a/tests/phpt/property_accessors.phpt +++ b/tests/phpt/property_accessors.phpt @@ -81,14 +81,14 @@ namespace App; class Sprocket { private $type { - get :string { - return $this->type; - } - set(string $value) { $this->type = $value; } + get :string { + return $this->type; + } + unset { $this->type = ''; }