Интерфейс вместо класса Site

This commit is contained in:
CORP\phedor 2018-04-25 14:50:45 +03:00
parent c2b9254fd0
commit df00756a41
5 changed files with 22 additions and 8 deletions

View file

@ -0,0 +1,11 @@
<?php
namespace ctiso\Controller;
interface SiteInterface {
function loadComponent($expression);
function getDatabase();
function getConfig();
function setComponentConfig($config);
function addRequireJsPath($name, $path, $schim = null);
}