MediaWiki master
Subquery.php
Go to the documentation of this file.
1<?php
7namespace Wikimedia\Rdbms;
8
9use Stringable;
10
14class Subquery implements Stringable {
16 private $sql;
17
21 public function __construct( $sql ) {
22 $this->sql = $sql;
23 }
24
28 public function __toString() {
29 return '(' . $this->sql . ')';
30 }
31}