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


PHP Manager::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($app)
 {
     parent::__construct($app);
     if (!$app['config']['OidConnect']) {
         throw new \InvalidArgumentException("OidConnect config file [app/config/OidConnect.php] not found.");
     }
     $this->fedKeyModel = $app['config']['OidConnect.dbfedkeymodel'] ?: 'OidConnect\\Models\\FedKeyModel';
     $this->socialUser = $app['config']['OidConnect.socialuser'] ?: 'OidConnect\\UserManagement\\SocialUser';
 }
开发者ID:alexgr,项目名称:OidConnect,代码行数:9,代码来源:IdpFactoryManager.php

示例2: __construct

 /**
  * Neo4j constructor
  *
  * @param string $configPath Configuration path
  * @param ContainerInterface $container Container  instance
  */
 public function __construct($configPath = null, ContainerInterface $container = null)
 {
     if (is_null($container)) {
         $container = new Container($configPath);
     }
     parent::__construct($container);
     $this->default = $this->app['config']->get('database.neo4j.default');
     $this->profiles = $this->app['config']->get('database.neo4j.profiles');
     $this->events = $this->app['events'];
 }
开发者ID:endyjasmi,项目名称:neo4j,代码行数:16,代码来源:Neo4j.php

示例3: __construct

 /**
  * Create new instance of ConfManager class.
  *
  * @param \Illuminate\Foundation\Application $driver
  */
 public function __construct($driver)
 {
     parent::__construct($driver);
 }
开发者ID:gaaarfild,项目名称:laravel-conf,代码行数:9,代码来源:ConfManager.php

示例4: __construct

 public function __construct($app)
 {
     parent::__construct($app);
     $this->dbConnection = $this->app['db']->connection();
     $this->auditLogger = new DatabaseAuditLogger($this->_cfg('audit_log_table'), $this->dbConnection);
 }
开发者ID:npmweb,项目名称:payment,代码行数:6,代码来源:PaymentManager.php

示例5: __construct

 /**
  * @param \Illuminate\Foundation\Application $app
  * @param string $name
  * @param array $config
  */
 public function __construct($app, $name, $config)
 {
     parent::__construct($app);
     $this->config = $config;
     $this->name = $name;
 }
开发者ID:esalazarv,项目名称:multiauth,代码行数:11,代码来源:AuthManager.php

示例6: __construct

 /**
  * Init CASAuthentication
  *
  * @param $config
  * @param AuthManager $auth
  */
 public function __construct($app)
 {
     parent::__construct($app);
     $this->config = $this->app['config']['services.cas'];
     $this->initialize();
 }
开发者ID:avvertix,项目名称:caslite,代码行数:12,代码来源:CasliteManager.php


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