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