widi / filter-specification
Specification pattern for filtering objects in php.
Installs: 7 834
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 1
Requires
- php: >=7.4 <=8.2
- phpunit/phpunit: ^9.5
README
Code Sample From Test
$candidate = $this->prophesize(MyCandidateInterface::class);
$candidate->getValue()->willReturn($value);
$builderFactory = new BuilderFactory();
$specificationBuilder = $builderFactory->create();
$firstSpecification =
$specificationBuilder
->and(new CandidateIsHigherThanFiveCompositeSpecification())
->and(new CandidateIsLowerThanTwentyCompositeSpecification())
->or(new CandidateIsDivisableByFive())
->build();
$secondSpecification =
$specificationBuilder
->and(new CandidateIsHigherThanOneHundredCompositeSpecification())
->and(new CandidateIsLowerThanTwoHundredCompositeSpecification())
->build();
$compositeSpecification =
$specificationBuilder
->or($firstSpecification)
->or($secondSpecification)
->build();
$result = $compositeSpecification->meetsSpecification($candidate->reveal());
$this->assertEquals($expectedResult, $result, 'Value failed: ' . $value);