App::isAuth

Usage

bool App::isAuth()

Description


Return Value

Boolean as to whether or not the user is authenticated.

Examples

Check if Authenticated

if (!$app->isAuth()) {
    echo "You are not authenticated\n";
}

See Also