Completed
Push — master ( a51ab2...247c5c )
by Antonio Carlos
03:22
created

HtmlString::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
ccs 0
cts 3
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace IlluminateAgnostic\Str\Support;
4
5
use IlluminateAgnostic\Str\Contracts\Support\Htmlable;
6
7
class HtmlString implements Htmlable
8
{
9
    /**
10
     * The HTML string.
11
     *
12
     * @var string
13
     */
14
    protected $html;
15
16
    /**
17
     * Create a new HTML string instance.
18
     *
19
     * @param  string  $html
20
     * @return void
0 ignored issues
show
Comprehensibility Best Practice introduced by
Adding a @return annotation to constructors is generally not recommended as a constructor does not have a meaningful return value.

Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.

Please refer to the PHP core documentation on constructors.

Loading history...
21
     */
22
    public function __construct($html)
23
    {
24
        $this->html = $html;
25
    }
26
27
    /**
28
     * Get the HTML string.
29
     *
30
     * @return string
31
     */
32
    public function toHtml()
33
    {
34
        return $this->html;
35
    }
36
37
    /**
38
     * Get the HTML string.
39
     *
40
     * @return string
41
     */
42
    public function __toString()
43
    {
44
        return $this->toHtml();
45
    }
46
}
47