Files
php-flasher/Filter/Specification/SpecificationInterface.php
T
2020-12-02 00:57:12 +01:00

16 lines
257 B
PHP

<?php
namespace Flasher\Prime\TestsFilter\Specification;
use Notify\Envelope;
interface SpecificationInterface
{
/**
* @param \Notify\Envelope $envelope
*
* @return bool
*/
public function isSatisfiedBy(Envelope $envelope);
}