You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
513 B
44 lines
513 B
|
12 years ago
|
<?php
|
||
|
|
|
||
|
|
use DigitalOcean\DigitalOcean;
|
||
|
|
use DigitalOcean\Credentials;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class DigitalOceanWrapper
|
||
|
|
*/
|
||
|
|
class AmazonVM extends AbstractVM implements VirtualMachineInterface
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @inheritdoc
|
||
|
|
*/
|
||
|
|
public function connect()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @inheritdoc
|
||
|
|
*/
|
||
|
|
public function runCron()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @inheritdoc
|
||
|
|
*/
|
||
|
|
public function resizeToMaxLimit()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @inheritdoc
|
||
|
|
*/
|
||
|
|
public function resizeToMinLimit()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|