Fixed the signature of Schema::findUniqueIndexes().

This commit is contained in:
Qiang Xue
2013-12-25 20:30:50 -05:00
parent 795c74100d
commit ab05f0d791

View File

@ -264,7 +264,7 @@ abstract class Schema extends Object
* @return array all unique indexes for the given table. * @return array all unique indexes for the given table.
* @throws NotSupportedException if this method is called * @throws NotSupportedException if this method is called
*/ */
public function findUniqueIndexes($schema = '') public function findUniqueIndexes($table)
{ {
throw new NotSupportedException(get_class($this) . ' does not support getting unique indexes information.'); throw new NotSupportedException(get_class($this) . ' does not support getting unique indexes information.');
} }