1234567891011121314151617181920212223242526272829 |
- <?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();
- }
|