mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-23 16:21:22 +02:00
10 lines
174 B
PHP
10 lines
174 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\Specification;
|
|
|
|
interface SpecificationInterface
|
|
{
|
|
public function isSatisfiedBy(Item $item): bool;
|
|
}
|