MDL-74912 dml: Fix missing nullable marker
This commit is contained in:
@@ -244,9 +244,9 @@ class mysqli_native_moodle_database extends moodle_database {
|
||||
/**
|
||||
* Set 'dbcollation' option
|
||||
*
|
||||
* @return string $dbcollation
|
||||
* @return string|null $dbcollation
|
||||
*/
|
||||
private function detect_collation(): string {
|
||||
private function detect_collation(): ?string {
|
||||
if ($this->external) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user