Internally it uses the $_data
array, the same as some Typed Datastructures
and all Interface Traits
of this
package.
Traits
This package provides a number of generic traits like different getter and setter methods, an implementation of the singleton design pattern and some little helpers. Those traits are too small to justify their own packages and most of them are dependencies of the Typed Datastructures and Interface Traits anyway.
Getter
Reads data from inaccessible properties by using magic methods.
To make a protected
or private
property readable, provide a method named _magicGet{Property}()
which handles the
reading. Replace {Property}
in the method's name with the name of the actual property (with an uppercase first
letter).
Trying to access an undefined property or a property without corresponding "magic" getter method will result in an \InvalidArgumentException.
Example: If the property is named
$fooBar
, the "magic" method has to be_magicGetFooBar()
. This method is then called when$fooBar
is read in a context where it normally would not be accessible.
Setter
Writes data to inaccessible properties by using magic methods.
To make a protected
or private
property writable, provide a method named _magicSet{Property}()
which handles the
writing. Replace {Property}
in the method's name with the name of the actual property (with an uppercase first
letter).
Trying to access an undefined property or a property without corresponding "magic" setter method will result in an \InvalidArgumentException.
Example: If the property is named
$fooBar
, the "magic" method has to be_magicSetFooBar()
. This method is then called when$fooBar
is written to in a context where it normally would not be accessible.
OverloadingGetter
Overloads a class with readable virtual properties.
It reads a protected internal array whose keys are interpreted as property names.
Trying to access an undefined virtual property will not issue any warning or error, but return NULL
instead.
Example: Reading
Foo->bar
will return the value ofFoo::$_data['bar']
.
OverloadingSetter
Overloads a class with writable virtual properties.
It writes a protected internal array whose keys are interpreted as property names.
Trying to access a previously undefined virtual property will create a new one with the given name.
Example:
Foo->bar = 42;
will setFoo::$_data['bar']
to42
.
Internally it uses the $_data
array, the same as some Typed Datastructures
and all Interface Traits
of this
package.
Singleton
Allows just a single instance of the class using this trait.
Get the singleton by calling the static method getInstance()
. If there is no object yet, the constructor is called
with the same arguments as getInstance()
. Any later call will just return the already instantiated object
(irrespective of the given arguments).
In order for this to work as expected, the constructor has to be implemented as private
to prevent direct
instantiation of the class.
TypeChecker
A generic data type checker.
This allows to set a list of allowed atomic data types and fully qualified class names. It also provides a method to check if a value's data type matches at least one of these types.
Available atomic types are array
, bool
, callable
, countable
, float
/ double
, int
/ integer
/ long
,
iterable
, null
, numeric
, object
, resource
, scalar
and string
.