Skip to content
Snippets Groups Projects

Resolve #3388358 "11x fix with test"

Open Siju Mathew requested to merge issue/drupal-3388358:3388358-11x-fix-with-test into 11.x
Files
2
@@ -339,7 +339,7 @@ public function getPrefix(): string {
* A single prefix.
*/
protected function setPrefix($prefix) {
assert(is_string($prefix), 'The \'$prefix\' argument to ' . __METHOD__ . '() must be a string');
assert(is_string($prefix), 'The prefix argument to ' . __METHOD__ . '() must be a string, this is ' . gettype($prefix) . ' type');
$this->prefix = $prefix;
$this->tablePlaceholderReplacements = [
$this->identifierQuotes[0] . str_replace('.', $this->identifierQuotes[1] . '.' . $this->identifierQuotes[0], $prefix),
Loading