API Add a getter for customisedObject property.

This is the only way to see if the ViewableData has been customised,
and is useful in situations when you want to further customise an
already-customised object.
This commit is contained in:
Mateusz Uzdowski 2014-08-14 10:28:00 +12:00
parent 5cd85f6496
commit 784e292d4e

View File

@ -208,6 +208,13 @@ class ViewableData extends Object implements IteratorAggregate {
);
}
/**
* @return ViewableData
*/
public function getCustomisedObj() {
return $this->customisedObject;
}
/**
* @param ViewableData $object
*/