nginx-rtmp-auth/src/Deblan/Bundle/RtmpBundle/AuthProvider/AuthProvider.php

18 lines
274 B
PHP

<?php
namespace Deblan\Bundle\RtmpBundle\AuthProvider;
/**
* Class AuthProvider
* @author Simon Vieille <simon@deblan.fr>
*/
interface AuthProvider
{
/**
* Returns the authentication validity
*
* @return bool
*/
public function isValid();
}