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.
		
		
		
		
		
			
		
			
				
					
					
						
							43 lines
						
					
					
						
							513 B
						
					
					
				
			
		
		
	
	
							43 lines
						
					
					
						
							513 B
						
					
					
				<?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()
 | 
						|
    {
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 |