LdapTools\Ldif\Ldif::__construct PHP Method

__construct() public method

public __construct ( LdapTools\Connection\LdapConnectionInterface $connection = null, LdapObjectSchemaFactory $schemaFactory = null )
$connection LdapTools\Connection\LdapConnectionInterface
$schemaFactory LdapTools\Factory\LdapObjectSchemaFactory
    public function __construct(LdapConnectionInterface $connection = null, LdapObjectSchemaFactory $schemaFactory = null)
    {
        $this->schemaFactory = $schemaFactory;
        $this->connection = $connection;
        $this->hydrator = new OperationHydrator($connection);
        $this->entryBuilder = new LdifEntryBuilder();
    }