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