for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PHP Deal framework
*
* @copyright Copyright 2019, Lisachenko Alexander <[email protected]>
* This source file is subject to the license that is bundled
* with this source code in the file LICENSE.
*/
declare(strict_types=1);
namespace PhpDeal\Annotation;
use Doctrine\Common\Annotations\Annotation as BaseAnnotation;
* This annotation defines an Invariant check
* @Annotation
* @Target("CLASS")
class Invariant extends BaseAnnotation
{
public function __toString(): string
return $this->value;
}