Passed
Push — master ( 6ac985...96b623 )
by Bruno
09:22 queued 14s
created

DummyClass::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 6
c 0
b 0
f 0
dl 0
loc 10
rs 10
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * This file was automatically generated by Modelarium.
4
 */
5
namespace App\Formularium;
6
7
class DummyClass extends \FormulariumLaravel\BaseModel
8
{
9
    public function __construct()
10
    {
11
        parent::__construct(
12
            'DummyName',
13
            [
14
                // TODO: fill this
15
                'fieldName' => [
16
                    'datatype' => 'string',
17
                    'validators' => [],
18
                    'extensions' => [],
19
                ]
20
            ]
21
        );
22
    }
23
}
24