File "InspectorFactory.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/filp/whoops/src/Whoops/Inspector/InspectorFactory.php
File size: 416 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;
use Whoops\Exception\Inspector;
class InspectorFactory implements InspectorFactoryInterface
{
/**
* @param \Throwable $exception
* @return InspectorInterface
*/
public function create($exception)
{
return new Inspector($exception, $this);
}
}