mirko-pagliai/reflection

A trait for Reflection


License
MIT

Documentation

Reflection

Software License Build Status Coverage Status

This package contains the ReflectionTrait, a trait that works as a wrapper for the Reflection classes provided by PHP, and allows you to easily:

  • invoke protected or private methods;
  • set/get protected or private properties.

This trait comes to test protected and private methods and properties with PHPUnit.

See tests for examples.
In the code we can access (and test) faster to the protected and private methods and properties that are declared in the Example class.

Available methods are:

invokeMethod(&$object, $methodName, array $parameters = [])

getProperty(&$object, $propertyName)

setProperty(&$object, $propertyName, $propertyValue)

Versioning

For transparency and insight into our release cycle and to maintain backward compatibility, Reflection will be maintained under the Semantic Versioning guidelines.