PHP code example of middlewares / whoops
1. Go to this page and download the library: Download middlewares/whoops library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
middlewares / whoops example snippets
$dispatcher = new Dispatcher([
new Middlewares\Whoops()
]);
$response = $dispatcher->dispatch(new ServerRequest());
$whoops = new Whoops\Run();
$responseFactory = new MyOwnResponseFactory();
//Create a Run instance automatically
$middleware = new Middlewares\Whoops();
//Pass your own Run instance
$middleware = new Middlewares\Whoops($whoops);
//Pass a Run instance and ResponseFactory
$middleware = new Middlewares\Whoops($whoops, $responseFactory);
//Do not catch errors
$middleware = (new Middlewares\Whoops())->catchErrors(false);