Files
Chamilo/plugin/bbb/lib/vm/VMInterface.php
2025-08-14 22:39:38 +02:00

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