- Simple performance tests on using different object principles in PHP
- Idea is to test how different class implementations of properties behave performance wise.
Using public properties
Using protected properties with magic getters and setters without testing if property exists
Using protected properties with magic getters and setters with testing if property exists
Using protected properties with implemented getters and setters
Using protected properties implemented as object instances