for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TonicForHealth\PagerDutyClient\Client\Exception;
/**
* Class RepresentProcessorException.
*/
class EventApiResponseCorruptException extends EventClientException
{
* @param mixed $data
*
* @return self
public static function eventApiResponseCorrupt($data)
return new self(
sprintf(
'Event api returned the currupt response data:%s',
var_export($data, true)
)
);
}