Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| SetConnection | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | class SetConnection extends AppModel |
| 4 | { |
| 5 | public function __construct($id = false, $table = null, $ds = null) |
| 6 | { |
| 7 | $id['table'] = 'set_connection'; |
| 8 | parent::__construct($id, $table, $ds); |
| 9 | } |
| 10 | |
| 11 | public $belongsTo = [ |
| 12 | 'Tsumego', |
| 13 | 'Set', |
| 14 | ]; |
| 15 | } |