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


PHP Container::error方法代碼示例

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


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

示例1: register

 /**
  * @param Container|Application $app
  */
 public function register(Container $app)
 {
     ini_set('log_errors', 1);
     strtoupper(env('APP_ENV')) === 'PRODUCTION' ? ini_set('display_errors', 0) : ini_set('display_errors', 1);
     $app['debug'] = env('DEBUG');
     !$app['debug'] ?: ($app['dump'] = $app->protect(function ($var) {
         return (new VarDumper())::dump($var);
     }));
     /** Register the app error factory */
     $app->error(function (\Exception $e) use($app) {
         // handle HTTP exceptions
         if (get_class($e) === NotFoundHttpException::class) {
             /** @var NotFoundHttpException $e */
             /** @noinspection DegradedSwitchInspection */
             switch ($e->getStatusCode()) {
                 case 404:
                     return response(view('404.html', ['error' => '404 - Page Not Found.']), 404);
                     break;
                 default:
                     $message = 'We are sorry, but something went terribly wrong.';
             }
             return new Response($message);
         }
         // not an HTTP exception
         throw $e;
     });
     if ($app['debug']) {
         error_reporting(E_ALL);
         ini_set('display_errors', 1);
         # core debug utilities
         # note that debug requires that the environment has been loaded
         include_once BOOT . 'assets/debug.php';
     }
 }
開發者ID:formula9,項目名稱:framework,代碼行數:37,代碼來源:ReportingServiceProvider.php

示例2: register

 public function register(Container $app)
 {
     if ($app instanceof Application) {
         $app->error(function (\Exception $e, Request $request, $code) use($app) {
             return $app->offsetGet("error.controller")->index($e, $request, $code);
         });
     }
 }
開發者ID:Dolondro,項目名稱:rargh,代碼行數:8,代碼來源:ErrorProvider.php

示例3: register

 public function register(Container $app)
 {
     $app['bugsnag'] = function ($app) {
         $client = Client::make($app['bugsnag.options']['apiKey']);
         $client->setNotifier(['name' => 'Silex Bugsnag', 'version' => static::VERSION, 'url' => 'https://github.com/fortis/silex-bugsnag']);
         Handler::register($client);
         return $client;
     };
     $app->error(function (\Exception $error, Request $request) use($app) {
         $params['request'] = ['params' => $request->query->all(), 'requestFormat' => $request->getRequestFormat()];
         $app['bugsnag']->notifyException($error);
     });
 }
開發者ID:fortis,項目名稱:silex-bugsnag,代碼行數:13,代碼來源:BugsnagServiceProvider.php


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