A super easy PHP Framework for web development! https://github.com/exacti/phacil-framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

<?php
/**
* Copyright © 2023 ExacTI Technology Solutions. All rights reserved.
* GPLv3 General License.
* https://exacti.com.br
* Phacil PHP Framework - https://github.com/exacti/phacil-framework
*/
namespace Phacil\Framework\Interfaces\Common;
/**
* @since 2.0.0
* @property \Phacil\Framework\Api\Database $db
* @property \Phacil\Framework\Session $session
* @property \Phacil\Framework\Request $request
* @property \Phacil\Framework\Interfaces\Url $url
* @property \Phacil\Framework\Mail $mail
* @property \Phacil\Framework\Interfaces\Loader $loader
* @property \Phacil\Framework\startEngineExacTI $engine
* @property \Phacil\Framework\Config $config
* @property \Phacil\Framework\Log $log
* @property \Phacil\Framework\Caches $cache
* @property \Phacil\Framework\Response $response
* @property \Phacil\Framework\Api\Document $document
* @property \Phacil\Framework\Front $front
* @property \Phacil\Framework\Translate $translate
* @package Phacil\Framework\Interfaces
*/
interface Registers {
/**
* Get an instance of this class
*
* @return $this
* @since 2.0.0
*/
static public function getInstance();
}