Passed
Push — latest ( 3af091...d64e46 )
by Colin
03:49 queued 01:39
created

Description::isTight()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
cc 1
nc 1
nop 0
crap 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