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