Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 722 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 722 Bytes

PhpObjectifyTests

  • Simple performance tests on using different object principles in PHP
  • Idea is to test how different class implementations of properties behave performance wise.

Tests

Test1

Using public properties

Test2

Using protected properties with magic getters and setters without testing if property exists

Test3

Using protected properties with magic getters and setters with testing if property exists

Test4

Using protected properties with implemented getters and setters

Test5

Using protected properties implemented as object instances