45 lines
546 B
PHP
45 lines
546 B
PHP
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
use DigitalOcean\DigitalOcean;
|
|
use DigitalOcean\Credentials;
|
|
|
|
/**
|
|
* Class AmazonVM
|
|
*/
|
|
class AmazonVM extends AbstractVM implements VirtualMachineInterface
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function connect()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function runCron()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function resizeToMaxLimit()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function resizeToMinLimit()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|