function StubUpsert::__toString
Implements PHP magic __toString method to convert the query to a string.
The toString operation is how we compile a query object to a prepared statement.
Return value
string A prepared statement query string for this object.
Overrides Query::__toString
File
- 
              core/
tests/ Drupal/ Tests/ Core/ Database/ Stub/ StubUpsert.php, line 17  
Class
- StubUpsert
 - A stub of core Upsert for testing purposes.
 
Namespace
Drupal\Tests\Core\Database\StubCode
public function __toString() {
  return '';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.