加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Ioc.php 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
inhere 提交于 2015-08-29 22:15 . 文件调整,发现的 bug 修复
<?php
/**
* Created by sublime 3.
* Auth: Inhere
* Date: 15-1-19
* Time: 10:35
* Uesd: 主要功能是 hi
*/
use ulue\core\ioc\ContainerManager;
abstract class Ioc extends ContainerManager
{
/**
* current container instance
* @var ulue\core\ioc\Container
*/
static public $box = null;
static public function getSession()
{
return self::get('session');
}
static public function getApp()
{
return self::get('application');
}
static public function app()
{
return self::get('application');
}
static public function getLoader()
{
return self::get('loader');
}
static public function getLogger()
{
return self::get('logger');
}
static public function getRequest()
{
return self::get('request');
}
static public function getResponse()
{
return self::get('response');
}
static public function getConfig()
{
return self::get('config');
}
}
/*=====╬╬╬╬╬╬╬╬╬===╬╬╬╬╬╬╬╬╬======╬╬╬╬╬╬╬╬╬=====╬╬╬╬╬╬╬╬╬====╋╋╋
.---._ ___
--===^ ~-......---.==\\\
/' _/-/ \ )))
`-~~ \ , ___\ ) ((
/ /---~~ \(`\( ))
</'|; .---" \>
| | " |
=====╬╬╬╬╬╬╬╬╬=====╬╬╬╬╬╬╬╬╬======╬╬╬╬╬╬╬╬╬=====╬╬╬╬╬╬╬╬╬====╋╋╋*/
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化