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


PHP ConnectionResolverInterface::setDefaultConnection方法代码示例

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


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

示例1: fire

 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     if (!$this->confirmToProceed()) {
         return;
     }
     $this->resolver->setDefaultConnection($this->getDatabase());
     $this->getSeeder()->run();
 }
开发者ID:pin-cnx,项目名称:orientdb-laravel-5,代码行数:13,代码来源:SeedCommand.php

示例2: fire

 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     if (!$this->confirmToProceed()) {
         return;
     }
     $this->resolver->setDefaultConnection($this->getDatabase());
     Model::unguarded(function () {
         $this->getSeeder()->__invoke();
     });
 }
开发者ID:bryanashley,项目名称:framework,代码行数:15,代码来源:SeedCommand.php

示例3: handle

 /**
  * @return mixed
  */
 public function handle()
 {
     // TODO: Implement handle() method.
     if (!$this->confirmToProceed()) {
         return;
     }
     $this->resolver->setDefaultConnection($this->getDatabase());
     Model::unguarded(function () {
         $this->getSeeder()->run();
     });
 }
开发者ID:filipveschool,项目名称:packagegenerator,代码行数:14,代码来源:MakeSeederCommand.php

示例4: fire

 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $tenants = $this->manager->getRepository()->getTenants();
     $seeder = $this->getSeeder();
     foreach ($tenants as $tenant) {
         $this->manager->bootstrapConnectionByTenantName($tenant->tenant_name);
         $this->resolver->setDefaultConnection($tenant->tenant_name);
         $this->manager->assumeTenant($tenant->id, true);
         $seeder->run();
         $this->output->writeln('<info>Seeded tenant ' . $tenant->tenant_name . '</info>');
         $this->manager->restoreTenant();
     }
 }
开发者ID:stillat,项目名称:database,代码行数:18,代码来源:SeedCommand.php

示例5: setConnection

 /**
  * Set the default connection name.
  *
  * @param  string  $name
  * @return void
  */
 public function setConnection($name)
 {
     if (!is_null($name)) {
         $this->resolver->setDefaultConnection($name);
     }
     $this->repository->setSource($name);
     $this->connection = $name;
 }
开发者ID:EnmanuelCode,项目名称:backend-laravel,代码行数:14,代码来源:Migrator.php

示例6: fire

 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $this->resolver->setDefaultConnection($this->getDatabase());
     $this->getSeeder()->run();
 }
开发者ID:flelievre,项目名称:EasyVisit,代码行数:10,代码来源:SeedCommand.php


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