callback = $callback; } /** * Calls the set callback on a given object. * * @since UT (3.7.0) * * @param int $object_id ID of the object to apply the callback on. * * @return mixed Updated object field. */ public function call( $object_id ) { return call_user_func( $this->callback, $object_id ); } }