1
0
mirror of synced 2025-02-09 08:49:26 +03:00

Merge pull request #5756 from whyte624/master

s/__tostring()/__toString() in Expr\OrderBy
This commit is contained in:
Marco Pivetta 2017-06-24 04:12:55 +02:00 committed by GitHub
commit 5d98247178

View File

@ -97,7 +97,7 @@ class OrderBy
/** /**
* @return string * @return string
*/ */
public function __tostring() public function __toString()
{ {
return $this->preSeparator . implode($this->separator, $this->parts) . $this->postSeparator; return $this->preSeparator . implode($this->separator, $this->parts) . $this->postSeparator;
} }