以前は、美しく機能する修正版の Dingo サービス プロバイダー (Laravel 4.2 を使用しています) を使用していました。しかし、しばらくすると(いくつかの作曲家の更新)、もう動作しないようです。登録されていないだけです。var_dump
私はいくつかまたはメソッドに入れようとしましたがecho
、何もありません__construct
私が行う唯一の違いは、より多くの例外タイプをキャプチャすることです
私のapp.php
'providers' => array(
....
'MyMod\Api\Provider\MainServiceProvider',
'Dingo\Api\Provider\ApiServiceProvider',
),
私のサービスプロバイダー
namespace MyMod\Api\Provider;
use Illuminate\Support\ServiceProvider;
use MyMod\Api\Event\ExceptionHandler;
class MainServiceProvider extends ServiceProvider
{
/**
* Boot the service provider.
* @return void
*/
public function boot()
{
$this->app['events']->listen('router.exception', 'MyMod\Api\Event\ExceptionHandler');
}
/**
* Register bindings for the service provider.
* @return void
*/
public function register()
{
$this->app->bind('MyMod\Api\Event\ExceptionHandler', function ($app) {
return new ExceptionHandler($app['api.exception'], $app['config']->get('api::debug'));
});
}
/**
* Indicates if loading of the provider is deferred.
* @var bool
*/
protected $defer = true;
}
私のハンドラー
namespace MyMod\Api\Event;
use Exception;
use MyMod\Api\Exception\ApiException;
use Dingo\Api\Http\Response;
use Dingo\Api\Exception\Handler;
use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;
class ExceptionHandler
{
/**
* API exception handler instance.
* @var \Dingo\Api\Exception\Handler
*/
protected $handler;
/**
* Indicates if debug mode is enabled.
* @var bool
*/
protected $debug;
/**
* Create a new exception handler instance.
* @param \Dingo\Api\Exception\Handler $handler
* @param bool $debug
*/
public function __construct(Handler $handler, $debug = false)
{
$this->handler = $handler;
$this->debug = $debug;
}
/**
* Handle an exception thrown during dispatching of an API request.
* @param \Exception $exception
* @throws \Exception
* @return \Dingo\Api\Http\Response
*/
public function handle(Exception $exception)
{
if ($this->handler->willHandle($exception)) {
$response = $this->handler->handle($exception);
return Response::makeFromExisting($response);
} elseif (! $exception instanceof HttpExceptionInterface) {
throw $exception;
}
if (! $message = $exception->getMessage()) {
$message = sprintf('%d %s', $exception->getStatusCode(), Response::$statusTexts[$exception->getStatusCode()]);
}
$response = ['message' => $message, 'status_code' => $exception->getStatusCode()];
if ($exception instanceof ApiException && $exception->hasErrors()) {
$response['errors'] = $exception->getErrors();
}
if ($code = $exception->getCode()) {
$response['code'] = $code;
}
if ($this->debug) {
$response['debug'] = [
'line' => $exception->getLine(),
'file' => $exception->getFile(),
'class' => get_class($exception),
'trace' => $exception->getTraceAsString(),
];
}
return new Response($response, $exception->getStatusCode(), $exception->getHeaders());
}
/**
* Enable or disable debug mode.
* @param bool $debug
* @return void
*/
public function setDebug($debug)
{
$this->debug = $debug;
}
}
誰かが間違っている可能性があることについて正しい方向に向けることができますか?
編集:作曲家とpsr-4に関係があるとますます確信しています
以下のcomposer.jsonについてどう思いますか、それは機能していました
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php",
"app/transformer",
"app/customPackages",
"app/routes"
],
},
私のサービス プロバイダーとハンドラーは app/customPackages フォルダーにあります