for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sludio\HelperBundle\Script\Specification;
/**
* Composite specification
*/
abstract class CompositeSpecification implements SpecificationInterface
{
* {@inheritdoc}
public function andX(SpecificationInterface $specification)
return new AndSpecification($this, $specification);
}
public function orX(SpecificationInterface $specification)
return new OrSpecification($this, $specification);
public function not()
return new NotSpecification($this);