Presentation   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 28
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php declare(strict_types=1);
2
3
namespace Bigwhoop\Trumpet\Config;
4
5
final class Presentation
6
{
7
    /** @var string */
8
    public $title = '';
9
10
    /** @var string */
11
    public $subtitle = '';
12
13
    /** @var Date */
14
    public $date;
15
16
    /** @var Author[] */
17
    public $authors = [];
18
19
    /** @var Slides */
20
    public $slides;
21
22
    /** @var string */
23
    public $license = '';
24
25
    /** @var mixed */
26
    public $themeSettings;
27
28 17
    public function __construct()
29
    {
30 17
        $this->slides = new Slides();
31 17
    }
32
}
33