[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/User/ -> UserFactoryInterface.php (source)

   1  <?php
   2  
   3  /**
   4   * Joomla! Content Management System
   5   *
   6   * @copyright  (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
   7   * @license    GNU General Public License version 2 or later; see LICENSE.txt
   8   */
   9  
  10  namespace Joomla\CMS\User;
  11  
  12  // phpcs:disable PSR1.Files.SideEffects
  13  \defined('_JEXEC') or die;
  14  // phpcs:enable PSR1.Files.SideEffects
  15  
  16  /**
  17   * Interface defining a factory which can create User objects
  18   *
  19   * @since  4.0.0
  20   */
  21  interface UserFactoryInterface
  22  {
  23      /**
  24       * Method to get an instance of a user for the given id.
  25       *
  26       * @param   int  $id  The id
  27       *
  28       * @return  User
  29       *
  30       * @since   4.0.0
  31       */
  32      public function loadUserById(int $id): User;
  33  
  34      /**
  35       * Method to get an instance of a user for the given username.
  36       *
  37       * @param   string  $username  The username
  38       *
  39       * @return  User
  40       *
  41       * @since   4.0.0
  42       */
  43      public function loadUserByUsername(string $username): User;
  44  }


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