Exceptions
2 weeks ago
Facades
2 weeks ago
Testing
2 weeks ago
Traits
2 weeks ago
AggregateServiceProvider.php
2 years ago
Benchmark.php
2 weeks ago
Carbon.php
2 weeks ago
Composer.php
2 weeks ago
ConfigurationUrlParser.php
2 weeks ago
DateFactory.php
2 weeks ago
Env.php
2 weeks ago
Fluent.php
2 weeks ago
HigherOrderTapProxy.php
2 years ago
HtmlString.php
2 years ago
InteractsWithTime.php
2 years ago
Js.php
2 weeks ago
Lottery.php
2 weeks ago
Manager.php
2 years ago
MessageBag.php
2 weeks ago
MultipleInstanceManager.php
2 weeks ago
NamespacedItemResolver.php
2 weeks ago
Optional.php
2 weeks ago
Pluralizer.php
2 weeks ago
ProcessUtils.php
2 weeks ago
Reflector.php
2 weeks ago
ServiceProvider.php
2 years ago
Str.php
2 weeks ago
Stringable.php
2 weeks ago
Timebox.php
2 weeks ago
ValidatedInput.php
2 weeks ago
ViewErrorBag.php
2 weeks ago
helpers.php
2 weeks ago
HtmlString.php
62 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Support; |
| 4 | |
| 5 | use IAWPSCOPED\Illuminate\Contracts\Support\Htmlable; |
| 6 | /** @internal */ |
| 7 | class HtmlString implements Htmlable |
| 8 | { |
| 9 | /** |
| 10 | * The HTML string. |
| 11 | * |
| 12 | * @var string |
| 13 | */ |
| 14 | protected $html; |
| 15 | /** |
| 16 | * Create a new HTML string instance. |
| 17 | * |
| 18 | * @param string $html |
| 19 | * @return void |
| 20 | */ |
| 21 | public function __construct($html = '') |
| 22 | { |
| 23 | $this->html = $html; |
| 24 | } |
| 25 | /** |
| 26 | * Get the HTML string. |
| 27 | * |
| 28 | * @return string |
| 29 | */ |
| 30 | public function toHtml() |
| 31 | { |
| 32 | return $this->html; |
| 33 | } |
| 34 | /** |
| 35 | * Determine if the given HTML string is empty. |
| 36 | * |
| 37 | * @return bool |
| 38 | */ |
| 39 | public function isEmpty() |
| 40 | { |
| 41 | return $this->html === ''; |
| 42 | } |
| 43 | /** |
| 44 | * Determine if the given HTML string is not empty. |
| 45 | * |
| 46 | * @return bool |
| 47 | */ |
| 48 | public function isNotEmpty() |
| 49 | { |
| 50 | return !$this->isEmpty(); |
| 51 | } |
| 52 | /** |
| 53 | * Get the HTML string. |
| 54 | * |
| 55 | * @return string |
| 56 | */ |
| 57 | public function __toString() |
| 58 | { |
| 59 | return $this->toHtml(); |
| 60 | } |
| 61 | } |
| 62 |