mirror of
https://github.com/pestphp/pest.git
synced 2026-03-10 17:57:23 +01:00
fix: don't registers exception handlers
This commit is contained in:
@ -1,24 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Pest\Bootstrappers;
|
||||
|
||||
use NunoMaduro\Collision;
|
||||
use Pest\Contracts\Bootstrapper;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
final class BootExceptionHandler implements Bootstrapper
|
||||
{
|
||||
/**
|
||||
* Boots the "Collision" exception handler.
|
||||
*/
|
||||
public function boot(): void
|
||||
{
|
||||
$handler = new Collision\Provider();
|
||||
|
||||
$handler->register();
|
||||
}
|
||||
}
|
||||
@ -27,7 +27,6 @@ final class Kernel
|
||||
*/
|
||||
private const BOOTSTRAPPERS = [
|
||||
Bootstrappers\BootOverrides::class,
|
||||
Bootstrappers\BootExceptionHandler::class,
|
||||
Bootstrappers\BootSubscribers::class,
|
||||
Bootstrappers\BootFiles::class,
|
||||
Bootstrappers\BootView::class,
|
||||
|
||||
Reference in New Issue
Block a user