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