Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 3 | public function __construct(TipoDeJoin $tipoDeJoin, Tabla $tabla1, Tabla $tabla, Campos $Campos, NombreColumnaJoin $nombreColumnaJoin) |
|
18 | { |
||
19 | 3 | $this->_tipoDeJoin = $tipoDeJoin; |
|
20 | 3 | $this->_tabla1 = $tabla1; |
|
21 | 3 | $this->_tabla = $tabla; |
|
22 | 3 | $this->_campos = $this->setCampos($Campos->sql()); |
|
23 | 3 | $this->_key = $nombreColumnaJoin; |
|
24 | 3 | } |
|
43 | } |