for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the DigitalOceanV2 library.
*
* (c) Antoine Corcy <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace DigitalOceanV2\Entity;
/**
* @author Antoine Corcy <[email protected]>
* @author Graham Campbell <[email protected]>
final class Upgrade extends AbstractEntity
{
* @var int
public $dropletId;
* @var string
public $dateOfMigration;
public $url;
* @param string $dateOfMigration
public function setDateOfMigration($dateOfMigration)
$this->dateOfMigration = static::convertDateTime($dateOfMigration);
}