blob: 4a691506ddd3a4388bac9dd232b407bd938a167b [file] [log] [blame]
<?php
namespace LdapRecord\Testing;
use LdapRecord\Auth\Guard;
class AuthGuardFake extends Guard
{
/**
* Always allow binding as configured user.
*
* @return bool
*/
public function bindAsConfiguredUser()
{
return true;
}
}