getConverterOptions() public method

Get the array of converter names and the options that will be passed to them.
public getConverterOptions ( ) : array
return array
Exemplo n.º 1
0
 /**
  * @param LdapObjectSchema $schema
  * @param int $type
  */
 public function __construct(LdapObjectSchema $schema = null, $type)
 {
     $this->type = $type;
     $this->schema = $schema;
     if ($schema) {
         $this->options = $schema->getConverterOptions();
     }
 }