testify/Testable.php

9 lines
82 B
PHP

<?php
interface Testable {
public function run(array $listeners);
}
?>