blob: 4a691506ddd3a4388bac9dd232b407bd938a167b [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace LdapRecord\Testing;
4
5use LdapRecord\Auth\Guard;
6
7class AuthGuardFake extends Guard
8{
9 /**
10 * Always allow binding as configured user.
11 *
12 * @return bool
13 */
14 public function bindAsConfiguredUser()
15 {
16 return true;
17 }
18}