/home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src/IncomingExceptionEntry.php (1290B)
exception = $exception;
parent::__construct($content);
}
/**
* Determine if the incoming entry is a reportable exception.
*
* @return bool
*/
public function isReportableException()
{
$handler = app(ExceptionHandler::class);
return method_exists($handler, 'shouldReport')
? $handler->shouldReport($this->exception) : true;
}
/**
* Determine if the incoming entry is an exception.
*
* @return bool
*/
public function isException()
{
return true;
}
/**
* Calculate the family look-up hash for the incoming entry.
*
* @return string
*/
public function familyHash()
{
return md5($this->content['file'].$this->content['line']);
}
}