<?php
/**
* Holds the last online update middleware.
* @package Sakura
*/
namespace Sakura\Middleware;
use Sakura\ActiveUser;
* Updates when the last online time of a user.
* @author Julian van de Groep <me@flash.moe>
class UpdateLastOnline implements MiddlewareInterface
{
* Update the last online information for the active user.
public function run()
if (ActiveUser::$user->id !== 0) {
ActiveUser::$user->updateOnline();
}