. */ class AppServiceDeploymentInfo { public $id; public $author; public $message; public $endTime; function __construct($xml) { $this->id = (string)$xml->id; $this->author = (string)$xml->author; $this->message = (string)$xml->message; $this->endTime = strtotime($xml->endTime); } } ?>