Embed   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Test Coverage

Coverage 83.33%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 10
c 1
b 0
f 0
dl 0
loc 31
ccs 10
cts 12
cp 0.8333
rs 10
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getUrl() 0 3 1
A __construct() 0 6 1
A setUrl() 0 3 1
A getEmbedCode() 0 3 1
A setEmbedCode() 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\Embed;
15
16
use League\CommonMark\Node\Block\AbstractBlock;
17
18
final class Embed extends AbstractBlock
19
{
20
    private string $url;
21
    private ?string $embedCode;
22
23 26
    public function __construct(string $url, ?string $embedCode = null)
24
    {
25 26
        parent::__construct();
26
27 26
        $this->url       = $url;
28 26
        $this->embedCode = $embedCode;
29
    }
30
31 22
    public function getUrl(): string
32
    {
33 22
        return $this->url;
34
    }
35
36
    public function setUrl(string $url): void
37
    {
38
        $this->url = $url;
39
    }
40
41 22
    public function getEmbedCode(): ?string
42
    {
43 22
        return $this->embedCode;
44
    }
45
46 18
    public function setEmbedCode(?string $embedCode): void
47
    {
48 18
        $this->embedCode = $embedCode;
49
    }
50
}
51