Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.49 KB

README.md

File metadata and controls

38 lines (27 loc) · 1.49 KB

Specification

Build Status Coverage Status Latest Stable Version License SensioLabsInsight

PHP implementation of the Specification pattern

Usage

$overDue        = new OverDueSpecification();
$noticeSent     = new NoticeSentSpecification();
$inCollection   = new InCollectionSpecification();

// example of specification pattern logic chaining
$sendToCollection = $overDue->andX($noticeSent)
                            ->not($inCollection);

foreach ($service->getInvoices() as $currentInvoice) {
    if (! $sendToCollection->isSatisfiedBy($currentInvoice)) {
        continue;
    }

    $currentInvoice->sendToCollection();
}

Requirements

  • PHP 8.2+

License

Specification is licensed under the MIT License - see the LICENSE file for details