Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | class SentenciaSelectWhereOrdenYLimite |
||
7 | { |
||
8 | private $_donde; |
||
9 | private $_como; |
||
10 | private $_ordenYLimite; |
||
11 | |||
12 | public function __construct(CamposYTabla $Donde, Como $Como, OrdenYLimite $OrdenYLimite) |
||
13 | { |
||
14 | $this->_donde = $Donde; |
||
15 | $this->_como = $Como; |
||
16 | $this->_ordenYLimite = $OrdenYLimite; |
||
17 | } |
||
18 | |||
19 | public function sql(): string |
||
22 | } |
||
23 | |||
24 | public function datos(): array |
||
27 | } |
||
28 | } |