Issue #2660464 by mallezie: Migrate sql base toString method not accessible by subclasses

8.1.x
Nathaniel Catchpole 2016-02-09 21:23:19 +09:00
parent 61375924d4
commit a19c7b6a39
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ abstract class SqlBase extends SourcePluginBase implements ContainerFactoryPlugi
* The query string.
*/
public function __toString() {
return (string) $this->query;
return (string) $this->query();
}
/**