Bolt\Storage\Database\Schema\Manager::getSchema PHP Method

getSchema() public method

Get the built schema.
public getSchema ( ) : Doctrine\DBAL\Schema\Schema
return Doctrine\DBAL\Schema\Schema
    public function getSchema()
    {
        if ($this->schema === null) {
            $this->getSchemaTables();
        }
        return $this->schema;
    }