| 1 | <?php |
||
| 17 | class fulltext_support extends \vse\similartopics\driver\mysqli |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Check if a column is a FULLTEXT index in topics table |
||
| 21 | * |
||
| 22 | * @access public |
||
| 23 | * @param string $column Name of the column |
||
| 24 | * @return bool True if column is a FULLTEXT index, false otherwise |
||
| 25 | * @deprecated 1.5.0, replace by is_fulltext() |
||
| 26 | */ |
||
| 27 | public function is_index($column = 'topic_title') |
||
| 31 | } |
||
| 32 |
This check looks for a call to a parent method whose name is different than the method from which it is called.
Consider the following code:
The
getFirstName()method in theSoncalls the wrong method in the parent class.