| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class SentenciaJoinWhereOrdenOLimite |
||
| 9 | { |
||
| 10 | private $_donde; |
||
| 11 | private $_where; |
||
| 12 | private $_ordenOLimite; |
||
| 13 | |||
| 14 | 13 | public function __construct(Joins $Joins, WhereInterface $whereInterface, OrdenOLimiteInterface $ordenOLimiteInterface) |
|
| 15 | { |
||
| 16 | 13 | $this->_where = $whereInterface; |
|
| 17 | 13 | $this->_donde = $Joins; |
|
| 18 | 13 | $this->_ordenOLimite = $ordenOLimiteInterface; |
|
| 19 | 13 | } |
|
| 20 | |||
| 21 | 2 | public function sql(): string |
|
| 24 | } |
||
| 25 | |||
| 26 | 2 | public function datos(): array |
|
| 29 | } |
||
| 30 | } |