__construct() public method

public __construct ( LdapObjectSchema $schema = null, integer $type )
$schema LdapTools\Schema\LdapObjectSchema
$type integer
 /**
  * @param LdapObjectSchema $schema
  * @param OperatorCollection $operators
  * @param int $type The LDAP operation type. See AttributeConverterInterface::TYPE_*.
  */
 public function __construct(LdapObjectSchema $schema = null, OperatorCollection $operators, $type)
 {
     parent::__construct($schema, $type);
     $this->operators = $operators;
 }
 /**
  * @param LdapObjectSchema $schema
  * @param BatchCollection $batches
  * @param int $type The LDAP operation type. See AttributeConverterInterface::TYPE_*.
  */
 public function __construct(LdapObjectSchema $schema, BatchCollection $batches, $type)
 {
     parent::__construct($schema, $type);
     $this->batches = $batches;
 }
 /**
  * @param LdapObjectSchema $schema
  * @param array $entry The [ attribute => value ] entries.
  * @param int $type The LDAP operation type. See AttributeConverterInterface::TYPE_*.
  */
 public function __construct(LdapObjectSchema $schema, array $entry, $type)
 {
     parent::__construct($schema, $type);
     $this->entry = $entry;
 }