src/FileFilterInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Stk2k\File;

interface FileFilterInterface
{
    /**
     * Check if the filter select the specified file.
     *
     * @param File $file         Target fileto be tested.
     *
     * @return bool
     */
    public function accept( File $file ) : bool;

}