Traits
1 year ago
Arr.php
4 years ago
Carbon.php
4 years ago
Collection.php
1 year ago
Enumerable.php
4 years ago
HigherOrderCollectionProxy.php
4 years ago
HigherOrderTapProxy.php
4 years ago
HtmlString.php
4 years ago
LazyCollection.php
4 years ago
Optional.php
4 years ago
Pluralizer.php
4 years ago
Str.php
1 year ago
alias.php
4 years ago
helpers.php
4 years ago
HtmlString.php
47 lines
| 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 |
| 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 |