[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/vendor/symfony/ldap/Adapter/ -> QueryInterface.php (source)

   1  <?php
   2  
   3  /*
   4   * This file is part of the Symfony package.
   5   *
   6   * (c) Fabien Potencier <[email protected]>
   7   *
   8   * For the full copyright and license information, please view the LICENSE
   9   * file that was distributed with this source code.
  10   */
  11  
  12  namespace Symfony\Component\Ldap\Adapter;
  13  
  14  use Symfony\Component\Ldap\Exception\LdapException;
  15  use Symfony\Component\Ldap\Exception\NotBoundException;
  16  
  17  /**
  18   * @author Charles Sarrazin <[email protected]>
  19   * @author Bob van de Vijver <[email protected]>
  20   */
  21  interface QueryInterface
  22  {
  23      public const DEREF_NEVER = 0x00;
  24      public const DEREF_SEARCHING = 0x01;
  25      public const DEREF_FINDING = 0x02;
  26      public const DEREF_ALWAYS = 0x03;
  27  
  28      public const SCOPE_BASE = 'base';
  29      public const SCOPE_ONE = 'one';
  30      public const SCOPE_SUB = 'sub';
  31  
  32      /**
  33       * Executes a query and returns the list of Ldap entries.
  34       *
  35       * @return CollectionInterface
  36       *
  37       * @throws NotBoundException
  38       * @throws LdapException
  39       */
  40      public function execute();
  41  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer