X7ROOT File Manager
Current Path:
/home/notabjze/just4dastreets.com/libraries/src/User
home
/
notabjze
/
just4dastreets.com
/
libraries
/
src
/
User
/
ðŸ“
..
📄
User.php
(20.07 KB)
📄
UserFactory.php
(1.46 KB)
📄
UserFactoryInterface.php
(812 B)
📄
UserHelper.php
(17.32 KB)
Editing: UserFactoryInterface.php
<?php /** * Joomla! Content Management System * * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\User; \defined('_JEXEC') or die; /** * Interface defining a factory which can create User objects * * @since 4.0.0 */ interface UserFactoryInterface { /** * Method to get an instance of a user for the given id. * * @param int $id The id * * @return User * * @since 4.0.0 */ public function loadUserById(int $id): User; /** * Method to get an instance of a user for the given username. * * @param string $username The username * * @return User * * @since 4.0.0 */ public function loadUserByUsername(string $username): User; }
Upload File
Create Folder