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