Jarves\ORM\Builder\Propel::getSchema PHP Method

getSchema() public method

public getSchema ( Object $object ) : string
$object Jarves\Configuration\Object
return string
    public function getSchema(Object $object)
    {
        $xml = simplexml_load_string('<database></database>');
        $this->declareTable($xml, $object);
        return $this->getFormattedXml($xml);
    }