Static Properties
There are two types of properties, dynamic and static. The properties in the examples above are all Dynamic, because they can be changed. You can access them using '$this->property' or '$class_instance->property'. Static properties can not be changed, they get assigned a value...