Passed
Push — 1.0 ( 12d132...dd1957 )
by Vladimir
06:10
created

UrlButton::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 1

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
ccs 5
cts 5
cp 1
rs 9.4285
cc 1
eloc 4
nc 1
nop 3
crap 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace FondBot\Templates\Keyboard;
6
7
class UrlButton implements Button
8
{
9
    private $label;
10
    private $url;
11
    private $parameters;
12
13 1
    public function __construct(string $label, string $url, array $parameters = [])
14
    {
15 1
        $this->label = $label;
16 1
        $this->url = $url;
17 1
        $this->parameters = $parameters;
18 1
    }
19
20
    /**
21
     * Button label.
22
     *
23
     * @return string
24
     */
25 1
    public function getLabel(): string
26
    {
27 1
        return $this->label;
28
    }
29
30
    /**
31
     * URL.
32
     *
33
     * @return string
34
     */
35 1
    public function getUrl(): string
36
    {
37 1
        return $this->url;
38
    }
39
40
    /**
41
     * Additional parameters.
42
     *
43
     * @return array
44
     */
45 1
    public function getParameters(): array
46
    {
47 1
        return $this->parameters;
48
    }
49
}
50