При обновлении с laravel 5 до laravel 5.5 произошла ошибка. Аргумент 1 передан в App \ Exceptions \ Handler :: report (). - PullRequest
0 голосов
/ 16 сентября 2018

Мы пытаемся обновить наш проект laravel 5.0 до последней версии laravel (подойдет и laravel 5.5) для поддержки php7.1.Когда мы запускаем composer, установка laravel выдает ошибку ниже:

[Symfony \ Component \ Debug \ Exception \ FatalErrorException] Uncaught TypeError: Аргумент 1 передается в App \ Exceptions \ Handler :: report (), необходимобыть экземпляром Exception, экземпляром Error, который вызывается в C: \ xampp7 \ htdocs \ VEK Lexmond \ vendor \ laravel \ framework \ src \ Illuminate \ Foundation \ Boot strap \ HandleExceptions.php в строке 73 и определяется в C:\ xampp7 \ htdocs \ VEK Lexmond \ app \ Exceptions \ Handler.php: 25 Трассировка стека: # 0 C: \ xampp7 \ htdocs \ VEK Lexmond \ vendor \ laravel \ framework \ src \ Illuminate \ Foundation \ Bootstrap \ HandleExceptions.ph p(73): App \ Exceptions \ Handler-> report (Object (Error)) # 1 [внутренняя функция]: Illuminate \ Foundation \ Bootstrap \ HandleExceptions-> handleException (Object (Error)) # 2 {main} брошенный

В чем причина этой ошибки?Мы надеемся, что у кого-нибудь есть решение нашей проблемы.

Заранее спасибо!

WeTalkive

Ответы [ 3 ]

0 голосов
/ 17 сентября 2018
<?php

/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of Laravel, and is
| the IoC container for the system binding all of the various parts.
|
*/

$app = new Illuminate\Foundation\Application(
    realpath(__DIR__.'/../')
);

/*
|--------------------------------------------------------------------------
| Bind Important Interfaces
|--------------------------------------------------------------------------
|
| Next, we need to bind some important interfaces into the container so
| we will be able to resolve them when needed. The kernels serve the
| incoming requests to this application from both the web and CLI.
|
*/

$app->singleton(
    'Illuminate\Contracts\Http\Kernel',
    'App\Http\Kernel'
);

$app->singleton(
    'Illuminate\Contracts\Console\Kernel',
    'App\Console\Kernel'
);

$app->singleton(
    'Illuminate\Contracts\Debug\ExceptionHandler',
    'App\Exceptions\Handler'
);

/*
|--------------------------------------------------------------------------
| Return The Application
|--------------------------------------------------------------------------
|
| This script returns the application instance. The instance is given to
| the calling script so we can separate the building of the instances
| from the actual running of the application and sending responses.
|
*/

return $app;
0 голосов
/ 17 сентября 2018

handler.php

Исключение использования; используйте Illuminate \ Foundation \ Exceptions \ Handler в качестве ExceptionHandler;

Обработчик класса расширяет ExceptionHandler {

/**
 * A list of the exception types that should not be reported.
 *
 * @var array
 */
protected $dontReport = [
    'Symfony\Component\HttpKernel\Exception\HttpException'
];

/**
 * Report or log an exception.
 *
 * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
 *
 * @param  \Exception  $e
 * @return void
 */
public function report(Exception $e)
{
    return parent::report($e);
}

/**
 * Render an exception into an HTTP response.
 *
 * @param  \Illuminate\Http\Request  $request
 * @param  \Exception  $e
 * @return \Illuminate\Http\Response
 */
public function render($request, Exception $e)
{
    return parent::render($request, $e);
}

}

0 голосов
/ 16 сентября 2018

Можете ли вы опубликовать то, что у вас есть в bootstrap / app.php?

также проверьте, есть ли это в этом файле

$app->singleton(
Illuminate\Contracts\Debug\ExceptionHandler::class,
App\Exceptions\Handler::class

);

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...