10 lines
206 B
PHP
Raw Permalink Normal View History

2024-09-06 20:28:06 +08:00
<?php
/**
* Interface iAuthenticate only exists for compatibility mode for Restler 2 and below, it should
* not be used otherwise.
*/
interface iAuthenticate
{
public function __isAuthenticated();
}