Skip to content

Commit

Permalink
CoreRoundup: Fix post 19 asym-vis RFC link
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayesh committed Oct 3, 2024
1 parent f5d09e4 commit 6f511c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/_posts/2024-10-02-php-core-roundup-19.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Further, PHP 8.4 unbundles IMAP, Pspell, OCI, and pdo_oci extensions. It means i

### Property Hooks and Asymmetric Visibility

One of the most important features in PHP 8.4 is that you can now use [property hooks](https://wiki.php.net/rfc/property-hooks) and declare property [visibility separately](https://wiki.php.net/rfc/asymmetric-visibility) for get and set operations. Both of these features are thanks to the collaborative efforts of Ilija Tovilo and Larry Garfield. Ilija, funded by the foundation 💜, focused on the implementation. Meanwhile, Larry, a frequent contributor, worked on the specification and authored the RFC text.
One of the most important features in PHP 8.4 is that you can now use [property hooks](https://wiki.php.net/rfc/property-hooks) and declare property [visibility separately](https://wiki.php.net/rfc/asymmetric-visibility-v2) for get and set operations. Both of these features are thanks to the collaborative efforts of Ilija Tovilo and Larry Garfield. Ilija, funded by the foundation 💜, focused on the implementation. Meanwhile, Larry, a frequent contributor, worked on the specification and authored the RFC text.
Property hooks allow declaring virtual properties with "hooks" that get executed when the properties are accessed or set, and the hooks get called with the object in context, to run their own logic.

```php
Expand Down

0 comments on commit 6f511c9

Please sign in to comment.