當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Container::runningInConsole方法代碼示例

本文整理匯總了PHP中Illuminate\Contracts\Container\Container::runningInConsole方法的典型用法代碼示例。如果您正苦於以下問題:PHP Container::runningInConsole方法的具體用法?PHP Container::runningInConsole怎麽用?PHP Container::runningInConsole使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Illuminate\Contracts\Container\Container的用法示例。


在下文中一共展示了Container::runningInConsole方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: resolve

 /**
  * Resolve the current request.
  *
  * @return \Bugsnag\Request\RequestInterface
  */
 public function resolve()
 {
     if ($this->app->runningInConsole()) {
         return new NullRequest();
     }
     $request = $this->app->make(Request::class);
     return new LaravelRequest($request);
 }
開發者ID:bugsnag,項目名稱:bugsnag-laravel,代碼行數:13,代碼來源:LaravelResolver.php

示例2: setupMigrations

 /**
  * Setup the migrations.
  *
  * @param \Illuminate\Contracts\Container\Container $app
  *
  * @return void
  */
 protected function setupMigrations(Application $app)
 {
     $source = realpath(__DIR__ . '/../database/migrations/');
     if ($app instanceof LaravelApplication && $app->runningInConsole()) {
         $this->publishes([$source => database_path('migrations')], 'migrations');
     }
 }
開發者ID:h4r5h4,項目名稱:oauth2-server-laravel,代碼行數:14,代碼來源:OAuth2ServerServiceProvider.php

示例3: setupConfig

 /**
  * Setup the config.
  *
  * @param \Illuminate\Contracts\Container\Container $app
  *
  * @return void
  */
 protected function setupConfig(Application $app)
 {
     if ($app instanceof LaravelApplication && $app->runningInConsole()) {
         $this->publishes([__DIR__ . '/../../config/sms.php' => config_path('sms.php')]);
     } elseif ($app instanceof LumenApplication) {
         $app->configure('sms');
     }
 }
開發者ID:laggards,項目名稱:simple-sms,代碼行數:15,代碼來源:SMSServiceProvider.php

示例4: setupConfig

 /**
  * Setup the config.
  *
  * @param \Illuminate\Contracts\Container\Container $app
  */
 protected function setupConfig(Application $app)
 {
     $source = __DIR__ . '/config/gamp.php';
     if ($app instanceof LaravelApplication && $app->runningInConsole()) {
         $this->publishes([$source => config_path('gamp.php')]);
     } elseif ($app instanceof LumenApplication) {
         $app->configure('gamp');
     }
     $this->mergeConfigFrom($source, 'gamp');
 }
開發者ID:irazasyed,項目名稱:laravel-gamp,代碼行數:15,代碼來源:LaravelGAMPServiceProvider.php

示例5: setupConfig

 /**
  * Setup the config.
  *
  * @param \Illuminate\Contracts\Container\Container $app
  *
  * @return void
  */
 protected function setupConfig(Container $app)
 {
     $source = realpath(__DIR__ . '/../config/bugsnag.php');
     if ($app instanceof LaravelApplication && $app->runningInConsole()) {
         $this->publishes([$source => config_path('bugsnag.php')]);
     } elseif ($app instanceof LumenApplication) {
         $app->configure('bugsnag');
     }
     $this->mergeConfigFrom($source, 'bugsnag');
 }
開發者ID:bugsnag,項目名稱:bugsnag-laravel,代碼行數:17,代碼來源:BugsnagServiceProvider.php


注:本文中的Illuminate\Contracts\Container\Container::runningInConsole方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。