pdf-finder/src/Filter/DocumentFilter.php

13 lines
171 B
PHP

<?php
namespace Filter;
use PDF\Document;
interface DocumentFilter
{
public function allows(Document $document): bool;
public function __toString(): string;
}