1<?php 2/** 3 * This file is part of the FreeDSx LDAP package. 4 * 5 * (c) Chad Sikorra <Chad.Sikorra@gmail.com> 6 * 7 * For the full copyright and license information, please view the LICENSE 8 * file that was distributed with this source code. 9 */ 10 11namespace FreeDSx\Ldap\Operation\Response; 12 13use FreeDSx\Ldap\Operation\LdapResult; 14 15/** 16 * RFC 4511 Section 4.5.2 17 * 18 * SearchResultDone ::= [APPLICATION 5] LDAPResult 19 * 20 * @author Chad Sikorra <Chad.Sikorra@gmail.com> 21 */ 22class SearchResultDone extends LdapResult 23{ 24 protected $tagNumber = 5; 25} 26