. * */ namespace OC\AppFramework\Utility; /** * Needed to mock calls to time() */ class TimeFactory { /** * @return int the result of a call to time() */ public function getTime() { return time(); } }