<?php
interface UserStateInterface
{
    public function 
isAuthenticated();

    public function 
nextState();

    public function 
getMenu();
}