Adldap\Query\Builder::getSchema PHP Метод

getSchema() публичный Метод

Returns the current schema.
public getSchema ( ) : Adldap\Schemas\SchemaInterface
Результат Adldap\Schemas\SchemaInterface
    public function getSchema()
    {
        return $this->schema;
    }

Usage Example

Пример #1
0
 /**
  * Constructor.
  *
  * @param Builder $builder
  */
 public function __construct(Builder $builder)
 {
     $this->builder = $builder;
     $this->connection = $builder->getConnection();
     $this->schema = $builder->getSchema();
 }