mirror of
https://github.com/php/phpruntests.git
synced 2026-03-25 08:32:21 +01:00
8 lines
62 B
PHP
8 lines
62 B
PHP
<?php
|
|
|
|
interface taskInterface
|
|
{
|
|
public function run();
|
|
}
|
|
|
|
?>
|