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.
		
		
		
		
		
			
		
			
				
					
					
						
							39 lines
						
					
					
						
							1.0 KiB
						
					
					
				
			
		
		
	
	
							39 lines
						
					
					
						
							1.0 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\Database $db 
 | 
						|
 * @property \Phacil\Framework\Session $session
 | 
						|
 * @property \Phacil\Framework\Request $request
 | 
						|
 * @property \Phacil\Framework\Url $url
 | 
						|
 * @property \Phacil\Framework\Mail $mail
 | 
						|
 * @property \Phacil\Framework\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\Document $document
 | 
						|
 * @property \Phacil\Framework\Front $front
 | 
						|
 * @property \Phacil\Framework\Translate $translate
 | 
						|
 * @package Phacil\Framework\Interfaces 
 | 
						|
 */
 | 
						|
interface Registers {
 | 
						|
 | 
						|
	/**
 | 
						|
	 * 
 | 
						|
	 * @return $this
 | 
						|
	 */
 | 
						|
	static public function getInstance();
 | 
						|
 | 
						|
} |