Property Hooks

Developers often use methods to wrap and guard access to object properties. There are several highly common patterns for such logic, which in practice may be verbose to implement repeatedly. Alternatively, developers may use __get and __set to intercept reads and writes generically, but that is a sledge-hammer approach that intercepts all undefined (and some defined) properties unconditionally. Property hooks provide a more targeted, purpose-built tool for common property interactions.

class User 
{
    public string $name {
        set {
            if (strlen($value) === 0) {
                throw new ValueError("Name must be non-empty");
            }
            $this->name = $value;
        }
    }
 
    public function __construct(string $name) {
        $this->name = $name;
    }
}

You can play around with them on 3v4l.org

Click the bar to cast your vote!
61%
39%
1

cool stuff! think it would be great way to remove validation from the constructor when implementing a value object

Share:
mohammad avatar
mohammad
voted yes
1

That would simplify our lives a lot in the day-to-day tasks like validation, data handling, transformation, etc. Paring this with Attributes can give us a lot of fire power! ;)

Share:
joelpiccoli avatar
joelpiccoli
voted yes
1

It could be used by ORMs like Laravel Eloquent Model that has cast and other hooks to transform data on get/set.

This would be really useful if this hooks could be added externally. So we can use attributes to add generic validation or transformation hooks.

Share:
gromnan avatar
gromnan
voted yes

Check out another RFCs

new MyClass()->method() without parentheses

Chain method on newly created objects without parentheses

29
38 yes
13 no
Interface Default Methods

Interface Default Methods improves backwards compatibility when changing interfaces, but also add a way to have multi-inheritance in PHP.

95
168 yes
263 no
Short Closures 2.0

This RFC proposes a way to have multi-line short closures — closures that don't need explicit use statements, but can still have multiple lines and a return statement.

101
373 yes
66 no
RSS Feed Contribute Watch on YouTube Our License
© 2024 RFC Vote. This project is open source. Contribute and collaborate with us!