Completed
Push — latest ( 6c0640...3af091 )
by Colin
16s queued 11s
created

Description   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
eloc 6
c 1
b 0
f 0
dl 0
loc 20
ccs 8
cts 8
cp 1
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A isTight() 0 3 1
A __construct() 0 5 1
A setTight() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the league/commonmark package.
7
 *
8
 * (c) Colin O'Dell <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace League\CommonMark\Extension\DescriptionList\Node;
15
16
use League\CommonMark\Node\Block\AbstractBlock;
17
use League\CommonMark\Node\Block\TightBlockInterface;
18
19
class Description extends AbstractBlock implements TightBlockInterface
20
{
21
    /** @var bool */
22
    private $tight;
23
24 42
    public function __construct(bool $tight = false)
25
    {
26 42
        parent::__construct();
27
28 42
        $this->tight = $tight;
29 42
    }
30
31 36
    public function isTight(): bool
32
    {
33 36
        return $this->tight;
34
    }
35
36 3
    public function setTight(bool $tight): void
37
    {
38 3
        $this->tight = $tight;
39 3
    }
40
}
41