PHP Static Properties
Properties called without creating an object.
PHP - Static Properties
Static properties can be called directly - without creating an instance of a class.
Static properties are declared with the static keyword:
To access a static property use the class name, double colon (::), and the property name.