i2ml / Portail_saad

Missing function/class method doc comment PHP-D1002
Documentation
Minor
2 years ago2 years old
Doc comment missing for class method testBaseUrlHasBeenSet
15        $this->assertTrue(defined('APPPATH'));
16    }
17
18    public function testBaseUrlHasBeenSet()19    {
20        $validation = Services::validation();
21
Doc comment missing for class method testIsDefinedAppPath
10 */
11final class HealthTest extends CIUnitTestCase
12{
13    public function testIsDefinedAppPath()14    {
15        $this->assertTrue(defined('APPPATH'));
16    }
Doc comment missing for class method testSessionSimple
 8 */
 9final class ExampleSessionTest extends CIUnitTestCase
10{
11    public function testSessionSimple()12    {
13        $session = Services::session();
14
Doc comment missing for class method testModelFindAll
14
15    protected $seed = ExampleSeeder::class;
16
17    public function testModelFindAll()18    {
19        $model = new ExampleModel();
20
Doc comment missing for class method testSoftDeleteLeavesRow
25        $this->assertCount(3, $objects);
26    }
27
28    public function testSoftDeleteLeavesRow()29    {
30        $model = new ExampleModel();
31        $this->setPrivateProperty($model, 'useSoftDeletes', true);