Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
TimeModeSession
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3class TimeModeSession extends AppModel
4{
5    public $belongsTo = [
6        'TimeModeCategory' => [
7            'className' => 'TimeModeCategory',
8            'foreignKey' => 'time_mode_category_id',
9        ],
10        'TimeModeSessionStatus' => [
11            'className' => 'TimeModeSessionStatus',
12            'foreignKey' => 'time_mode_session_status_id',
13        ],
14        'TimeModeRank' => [
15            'className' => 'TimeModeRank',
16            'foreignKey' => 'time_mode_rank_id',
17        ],
18    ];
19
20    public function __construct($id = false, $table = null, $ds = null)
21    {
22        $id['table'] =  'time_mode_session';
23        parent::__construct($id, $table, $ds);
24    }
25}