/**
* A class that allows to call a specific method
* on each of the element of the set|grid it was given
*/
class CallableMap
{
/**
* Transfer each method calls to the elements of the set
*
* @param [type] $method
* @param [type] $args
* @return void
*/
public function __call($method, $args)
{
return $this->object->map(function ($item) use ($method, $args) {
$item = is_array($item) ? new Set($item) : $item;
// Call the method on each item
return call_user_func_array([$item, $method], $args);
});
}
/**
* Create a new instance
*
* @param object $object
*/
public function __construct($object)
{
$this->object = $object;
}
}