File "InspectorFactoryInterface.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/filp/whoops/src/Whoops/Inspector/InspectorFactoryInterface.php
File size: 299 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Whoops - php errors for cool kids
* @author Filipe Dobreira <http://github.com/filp>
*/
namespace Whoops\Inspector;
interface InspectorFactoryInterface
{
/**
* @param \Throwable $exception
* @return InspectorInterface
*/
public function create($exception);
}