for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Gateway Class
* @category Ticaje
* @author Max Demian <[email protected]>
*/
namespace Ticaje\AConnector\Gateway\Provider\Authentication;
use Ticaje\AConnector\Interfaces\Provider\Authentication\AuthenticatorInterface;
* Class Basic
* @package Ticaje\AConnector\Gateway\Provider\Authentication
class Basic implements AuthenticatorInterface
{
* @inheritDoc
public function authenticate(array $credentials)
}