17/10
2014
dev-master
9999999-dev服務註冊
MIT
The Requires
- php >=5.3.0
The Development Requires
by Colin
Wallogit.com
2017 © Pedro Peláez
服務註冊
實驗用 (參考自illuminate), (*1)
class, (*3)
class MyService extends Rde\Provider
{
public function register()
{
$this->app['my.service'] = function($app){
return new ReadObject;
};
}
public function providers()
{
return array('my.service');
}
// if you need...
public function boot()
{
ReadObjectManager::setSomeConfig($this->app['config']['any']);
}
}
服務註冊
MIT