for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spiral\Statistics\Exceptions;
use Spiral\Statistics\Extract;
class InvalidExtractEventException extends InvalidExtractException
{
public function __construct($event)
parent::__construct(sprintf(
'Unknown event "%s", should be passed in construct.',
$event
));
}