callback = $callback; } /** * Calls the set callback on a given object. * * @param mixed $object The object to apply the callback on. * * @return mixed The possibly altered object. */ public function call( $object ) { return call_user_func( $this->callback, $object ); } }