9 lines
82 B
PHP
9 lines
82 B
PHP
<?php
|
|
|
|
interface Testable {
|
|
|
|
public function run(array $listeners);
|
|
|
|
}
|
|
|
|
?>
|