for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace DependencyAnalyzer\Exceptions;
class InvalidQualifiedNamePatternException extends RuntimeException
{
/**
* @var string
*/
private $pattern;
public function __construct(string $pattern)
parent::__construct('Invalid pattern: ' . $pattern);
$this->pattern = $pattern;
}