for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Version package.
*
* Copyright (c) Nikola Posa <[email protected]>
* For full copyright and license information, please refer to the LICENSE file,
* located at the package root folder.
*/
namespace Version\Exception;
use DomainException;
* @author Nikola Posa <[email protected]>
class InvalidConstraintException extends DomainException implements Exception
{
public static function forOperator($operator)
return new self(sprintf('Unsupported operator: %s', $operator));
}