| 1 | <?php |
||
| 34 | abstract class BaseFilterTest extends TestCase { |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var \Grafizzi\Graph\Filter\FilterInterface[] |
||
| 38 | * Array of filters, implementing FilterInterface. |
||
| 39 | */ |
||
| 40 | protected $filters = array(); |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Cleans up the environment after running a test. |
||
| 44 | */ |
||
| 45 | protected function tearDown() : void { |
||
| 49 | } |
||
| 50 |