Baikal\Core\PDOBasicAuth::__construct PHP Метод

__construct() публичный Метод

If the filename argument is passed in, it will parse out the specified file fist.
public __construct ( PDO $pdo, $authRealm, string $tableName = 'users' )
$pdo PDO
$tableName string The PDO table name to use
    function __construct(\PDO $pdo, $authRealm, $tableName = 'users')
    {
        $this->pdo = $pdo;
        $this->tableName = $tableName;
        $this->authRealm = $authRealm;
    }