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

public __construct ( $Name, array $Columns, $Type = IndexType::Plain )
$Columns array
Пример #1
0
 public function __construct($Name, array $Columns, $Type = IndexType::Plain, $StorageType = IndexStorageType::BTree)
 {
     parent::__construct($Name, $Columns, $Type);
     if ($Type !== IndexType::FullText) {
         $this->StorageType = $StorageType;
     }
 }