PHP 8.4 Released
Property hooks RFC
Doc
PHP < 8.4
class Locale{ private string $languageCode; private string $countryCode; public function __construct(string $languageCode, string $countryCode) { $this->setLanguageCode($languageCode); $this->setCountryCode($countryCode); } public function getLanguageCode(): string { return $this->languageCode; } public function setLanguageCode(string $languageCode): void { $this->languageCode = $languageCod...
Read more at php.net