[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/vendor/symfony/ldap/Adapter/ -> AdapterInterface.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  /**
  15   * @author Charles Sarrazin <[email protected]>
  16   */
  17  interface AdapterInterface
  18  {
  19      /**
  20       * Returns the current connection.
  21       *
  22       * @return ConnectionInterface
  23       */
  24      public function getConnection();
  25  
  26      /**
  27       * Creates a new Query.
  28       *
  29       * @return QueryInterface
  30       */
  31      public function createQuery(string $dn, string $query, array $options = []);
  32  
  33      /**
  34       * Fetches the entry manager instance.
  35       *
  36       * @return EntryManagerInterface
  37       */
  38      public function getEntryManager();
  39  
  40      /**
  41       * Escape a string for use in an LDAP filter or DN.
  42       *
  43       * @return string
  44       */
  45      public function escape(string $subject, string $ignore = '', int $flags = 0);
  46  }


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