30 lines
400 B
PHP
30 lines
400 B
PHP
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Interface VirtualMachineInterface
|
|
*/
|
|
interface VirtualMachineInterface
|
|
{
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
function connect();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
function runCron();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
function resizeToMaxLimit();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
function resizeToMinLimit();
|
|
}
|
|
|