| 1 | <?php |
||
| 18 | class Fragment implements FragmentInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | private $statement = null; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $statement |
||
| 27 | */ |
||
| 28 | public function __construct($statement) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | * |
||
| 36 | * @param QueryCompiler $compiler |
||
| 37 | */ |
||
| 38 | public function sqlStatement(QueryCompiler $compiler = null) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function __toString() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return object |
||
| 53 | */ |
||
| 54 | public function __debugInfo() |
||
| 58 | } |