1 | <?php |
||
31 | class Raw extends StatementAbstract implements RawInterface |
||
32 | { |
||
33 | /** |
||
34 | * raw string |
||
35 | * |
||
36 | * @var string |
||
37 | * @access protected |
||
38 | */ |
||
39 | protected $raw_string; |
||
40 | |||
41 | /** |
||
42 | * Constructor |
||
43 | * |
||
44 | * @param string $rawSql |
||
45 | * @param BuilderInterface $builder |
||
46 | * @access public |
||
47 | */ |
||
48 | public function __construct( |
||
55 | |||
56 | /** |
||
57 | * {@inheritDoc} |
||
58 | */ |
||
59 | protected function buildSql(array $settings)/*# : string */ |
||
63 | } |
||
64 |