LdapTools\Schema\LdapObjectSchema::getConverterOptions PHP Метод

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

Get the array of converter names and the options that will be passed to them.
public getConverterOptions ( ) : array
Результат array
    public function getConverterOptions()
    {
        return $this->converterOptions;
    }

Usage Example

Пример #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();
     }
 }