Adldap\Query\Builder::getSchema PHP Method

getSchema() public method

Returns the current schema.
public getSchema ( ) : Adldap\Schemas\SchemaInterface
return Adldap\Schemas\SchemaInterface
    public function getSchema()
    {
        return $this->schema;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Constructor.
  *
  * @param Builder $builder
  */
 public function __construct(Builder $builder)
 {
     $this->builder = $builder;
     $this->connection = $builder->getConnection();
     $this->schema = $builder->getSchema();
 }