I have a parent class like so: abstract class UiElement { protected static ?string $template_name = null; public function __construct() { if(static::$template_name == null) { …
Tag: properties
How to solve the missing object properties in PHP?
This is a bit philosophical but I think many people encountered this problem. The goal is to access various (dynamically declared) properties in PHP and get rid of notices when they are not set. Why …