mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 13:59:08 +02:00
10 lines
165 B
PHP
10 lines
165 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\Specification;
|
|
|
|
interface Specification
|
|
{
|
|
public function isSatisfiedBy(Item $item): bool;
|
|
}
|