They declare PHP_VERSION>=5.3.3, however, in its code, something like ‘trait’ which was introduced in 5.4 appear everywhere.I’m confused!
They declare PHP_VERSION>=5.3.3, however, in its code, something like ‘trait’ which was introduced in
Share
It doesn’t use traits, it lets you use traits. The requirement is 5.3.3, but using the traits part of the framework requires 5.4.
It doesn’t break anything.
Update:
See also this recent issue.