| 1 | <?php |
||
| 28 | class Raw implements OutputInterface |
||
| 29 | { |
||
| 30 | /** |
||
| 31 | * raw string |
||
| 32 | * |
||
| 33 | * @var string |
||
| 34 | * @access protected |
||
| 35 | */ |
||
| 36 | protected $raw_string; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Constructor |
||
| 40 | * |
||
| 41 | * @param string $rawSql |
||
| 42 | * @access public |
||
| 43 | */ |
||
| 44 | public function __construct(/*# string */ $rawSql) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritDoc} |
||
| 51 | */ |
||
| 52 | public function getStatement(array $settings = [])/*# : string */ |
||
| 56 | |||
| 57 | /** |
||
| 58 | * {@inheritDoc} |
||
| 59 | */ |
||
| 60 | public function __toString()/*# : string */ |
||
| 64 | } |
||
| 65 |