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