*/ class UpdateLastOnline implements MiddlewareInterface { /** * Update the last online information for the active user. */ public function run() { if (ActiveUser::$user->id !== 0) { ActiveUser::$user->updateOnline(); } } }