Subversion-Projekte lars-tiefland.laravel_shop

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php namespace Clockwork\Authentication;

class NullAuthenticator implements AuthenticatorInterface
{
        public function attempt(array $credentials)
        {
                return true;
        }

        public function check($token)
        {
                return true;
        }

        public function requires()
        {
                return [];
        }
}