Document
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 4
c 1
b 0
f 0
dl 0
loc 16
1
<?php
2
0 ignored issues
show
Coding Style introduced by
Missing file doc comment
Loading history...
3
namespace DMT\Insolvency\Model;
4
5
class Document
0 ignored issues
show
Coding Style introduced by
Missing doc comment for class Document
Loading history...
6
{
7
    /**
0 ignored issues
show
Coding Style introduced by
Missing short description in doc comment
Loading history...
8
     * @var string $document;
9
     */
10
    public $document;
11
12
    /**
0 ignored issues
show
Coding Style introduced by
Missing short description in doc comment
Loading history...
13
     * @var string $mime
14
     */
15
    public $mime;
16
17
    /**
0 ignored issues
show
Coding Style introduced by
Missing short description in doc comment
Loading history...
18
     * @var string $encoding
19
     */
20
    public $encoding = 'base64';
21
}
22