for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Acquia\Cloud\Api\Response;
class DatabaseBackup extends \Acquia\Rest\Element
{
/**
* @var string
*/
protected $idColumn = 'id';
* @return string
public function checksum()
return $this['checksum'];
}
public function databaseName()
return $this['name'];
* @return boolean
public function deleted()
return !empty($this['deleted']);
public function link()
return $this['link'];
* @return \DateTime
public function started()
$created = new \DateTime();
return $created->setTimestamp($this['started']);
public function type()
return $this['type'];
public function completed()
return $created->setTimestamp($this['completed']);
public function path()
return $this['path'];
public function id()
return $this['id'];