芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/libraries.2/src/MVC/Factory/MVCFactoryServiceInterface.php
* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\MVC\Factory; \defined('_JEXEC') or die; /** * Interface to be implemented by classes depending on a MVC factory. * * @since 4.0.0 */ interface MVCFactoryServiceInterface { /** * Get the factory. * * @return MVCFactoryInterface * * @since 4.0.0 * @throws \UnexpectedValueException May be thrown if the factory has not been set. */ public function getMVCFactory(): MVCFactoryInterface; }