1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
tcl_update_db/lib/TclUpdates/GotuObject.php

24 lines
351 B
PHP
Executable File

<?php
namespace TclUpdates;
class GotuObject
{
private $attrs = array();
public function __construct()
{
}
public static function fromXmlParser(XmlParser $xp)
{
if (!$xp->validateGOTU()) {
return false;
}
$g = new self();
$g->attrs = $xp->getAttrs();
return $g;
}
}