for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Anomaly\UsersModule\User\Authenticator;
use Anomaly\Streams\Platform\Addon\Extension\Extension;
use Anomaly\UsersModule\User\Authenticator\Contract\AuthenticatorExtensionInterface;
use Anomaly\UsersModule\User\Contract\UserInterface;
/**
* Class AuthenticatorExtension
*
* @link http://pyrocms.com/
* @author PyroCMS, Inc. <[email protected]>
* @author Ryan Thompson <[email protected]>
*/
class AuthenticatorExtension extends Extension implements AuthenticatorExtensionInterface
{
* Authenticate a set of credentials.
* @param array $credentials
* @return null|UserInterface
public function authenticate(array $credentials)
return null;
}