6 lines
74 B
PHP
6 lines
74 B
PHP
|
<?php
|
||
|
interface vm {
|
||
|
public function start();
|
||
|
public function stop();
|
||
|
}
|