当前位置: 首页>>代码示例>>PHP>>正文


PHP Application::__construct方法代码示例

本文整理汇总了PHP中Alchemy\Phrasea\Application::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Application::__construct方法的具体用法?PHP Application::__construct怎么用?PHP Application::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Alchemy\Phrasea\Application的用法示例。


在下文中一共展示了Application::__construct方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * Registers the autoloader and necessary components.
  *
  * @param string      $name        Name for this application.
  * @param string|null $version     Version number for this application.
  * @param string|null $environment The environment.
  */
 public function __construct($name, $version = null, $environment = self::ENV_PROD)
 {
     parent::__construct($environment);
     $app = $this;
     $this['session.test'] = true;
     $this['console'] = $this->share(function () use($name, $version) {
         return new Console\Application($name, $version);
     });
     $this['dispatcher'] = $this->share($this->extend('dispatcher', function (EventDispatcher $dispatcher, Application $app) {
         $dispatcher->addListener('phraseanet.notification.sent', function () use($app) {
             $app['swiftmailer.spooltransport']->getSpool()->flushQueue($app['swiftmailer.transport']);
         });
         $dispatcher->addSubscriber(new BridgeSubscriber($app));
         return $dispatcher;
     }));
     $this->register(new PluginServiceProvider());
     $this->register(new WebsocketServerServiceProvider());
     $this->register(new ComposerSetupServiceProvider());
     $this->register(new CLIDriversServiceProvider());
     $this->register(new LessBuilderServiceProvider());
     $this->register(new SignalHandlerServiceProvider());
     $this->register(new TaskManagerServiceProvider());
     $this->register(new TranslationExtractorServiceProvider());
     $this->register(new DoctrineMigrationServiceProvider());
     $this->bindRoutes();
     error_reporting(-1);
     ErrorHandler::register();
     PhraseaCLIExceptionHandler::register();
 }
开发者ID:nlegoff,项目名称:Phraseanet,代码行数:36,代码来源:CLI.php


注:本文中的Alchemy\Phrasea\Application::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。