mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-07 06:56:25 +02:00
9 lines
149 B
PHP
9 lines
149 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Behavioral\Specification;
|
|
|
|
interface SpecificationInterface
|
|
{
|
|
public function isSatisfiedBy(Item $item): bool;
|
|
}
|