MediaWiki  master
Subquery.php
Go to the documentation of this file.
1 <?php
21 namespace Wikimedia\Rdbms;
22 
26 class Subquery {
28  private $sql;
29 
33  public function __construct( $sql ) {
34  $this->sql = $sql;
35  }
36 
40  public function __toString() {
41  return '(' . $this->sql . ')';
42  }
43 }