You are here

public function BaseIndex::__construct in Schema 8

1 call to BaseIndex::__construct()
DifferentIndex::__construct in src/Comparison/Result/DifferentIndex.php
1 method overrides BaseIndex::__construct()
DifferentIndex::__construct in src/Comparison/Result/DifferentIndex.php

File

src/Comparison/Result/BaseIndex.php, line 17
Contains Drupal\schema\Comparison\Result\BaseIndex.

Class

BaseIndex

Namespace

Drupal\schema\Comparison\Result

Code

public function __construct($table_name, $index_name, $index_type, $schema) {
  $this->table_name = $table_name;
  $this->index_name = $index_name;
  $this->index_type = $index_type;
  $this->schema = $schema;
}