class DifferentIndex in Schema 8
Hierarchy
- class \Drupal\schema\Comparison\Result\BaseIndex
- class \Drupal\schema\Comparison\Result\DifferentIndex
Expanded class hierarchy of DifferentIndex
1 file declares its use of DifferentIndex
- TableComparisonInfoBuilder.php in src/
Comparison/ TableComparisonInfoBuilder.php - Contains Drupal\schema\Comparison\TableComparisonInfoBuilder.
File
- src/
Comparison/ Result/ DifferentIndex.php, line 10 - Contains Drupal\schema\Comparison\Result\DifferentIndex
Namespace
Drupal\schema\Comparison\ResultView source
class DifferentIndex extends BaseIndex {
protected $actual_schema;
function __construct($table_name, $index_name, $index_type, $declared_schema, $actual_schema) {
parent::__construct($table_name, $index_name, $index_type, $declared_schema);
$this->actual_schema = $actual_schema;
}
public function getDeclaredSchema() {
return $this->schema;
}
public function getActualSchema() {
return $this->actual_schema;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BaseIndex:: |
protected | property | ||
BaseIndex:: |
protected | property | ||
BaseIndex:: |
protected | property | ||
BaseIndex:: |
protected | property | ||
BaseIndex:: |
public | function | ||
BaseIndex:: |
public | function | ||
BaseIndex:: |
public | function | ||
BaseIndex:: |
public | function | ||
BaseIndex:: |
public | function | ||
DifferentIndex:: |
protected | property | ||
DifferentIndex:: |
public | function | ||
DifferentIndex:: |
public | function | ||
DifferentIndex:: |
function |
Overrides BaseIndex:: |