Function DatabaseRepair->search_for_meta_table_issues
Definitions
sources/database_repair.php
- Search for issues between the meta tables and existent tables.
- Visibility: private
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
---|---|---|---|---|---|---|---|
$existent_tables | array | No | No | required parameter | N/A | N/A | Existent tables |
$meta_tables | array | No | No | required parameter | N/A | N/A | Meta tables |
$expected_tables | array | No | No | required parameter | N/A | N/A | Expected tables |
Returns
- Whether there have been issues found
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Search for issues between the meta tables and existent tables.
*
* @param array $existent_tables Existent tables
* @param array $meta_tables Meta tables
* @param array $expected_tables Expected tables
* @return boolean Whether there have been issues found
*/
private function search_for_meta_table_issues(array $existent_tables, array $meta_tables, array $expected_tables) : bool
* Search for issues between the meta tables and existent tables.
*
* @param array $existent_tables Existent tables
* @param array $meta_tables Meta tables
* @param array $expected_tables Expected tables
* @return boolean Whether there have been issues found
*/
private function search_for_meta_table_issues(array $existent_tables, array $meta_tables, array $expected_tables) : bool