Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2namespace Apie\Common\Interfaces;
3
4/**
5 * If an entity adds this interface, we do extra checks on existing sessions to see if you are still allowed to be logged
6 * in.
7 */
8interface CheckLoginStatusInterface
9{
10    public function isDisabled(): bool;
11}