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
Tsumego
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 Tsumego extends AppModel
4{
5    public function __construct($id = false, $table = null, $ds = null)
6    {
7        $id['table'] = 'tsumego';
8        parent::__construct($id, $table, $ds);
9    }
10
11    public $validate = [
12        'title' => [
13            'rule' => 'notBlank',
14        ],
15        'sgf1' => [
16            'rule' => 'notBlank',
17        ],
18    ];
19}