for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* This file is part of PHPUnit Coverage Check.
*
* (c) Eric Sizemore <[email protected]>
* (c) Richard Regeer <[email protected]>
* This source file is subject to the MIT license. For the full copyright,
* license information, and credits/acknowledgements, please view the LICENSE
* and README files that were distributed with this source code.
*/
namespace Esi\CoverageCheck\Exceptions;
use RuntimeException;
final class NotAValidCloverFileException extends RuntimeException
{
public static function create(): self
return new self('Clover file appears to be invalid. Are you sure this is a PHPUnit generated clover report?');
}