PATH:
home
/
lab2454c
/
internationalminersbank.com
/
backup
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Support
<?php namespace Illuminate\Support; use Illuminate\Contracts\Support\Htmlable; class HtmlString implements Htmlable { /** * The HTML string. * * @var string */ protected $html; /** * Create a new HTML string instance. * * @param string $html * @return void */ public function __construct($html = '') { $this->html = $html; } /** * Get the HTML string. * * @return string */ public function toHtml() { return $this->html; } /** * Determine if the given HTML string is empty. * * @return bool */ public function isEmpty() { return $this->html === ''; } /** * Determine if the given HTML string is not empty. * * @return bool */ public function isNotEmpty() { return ! $this->isEmpty(); } /** * Get the HTML string. * * @return string */ public function __toString() { return $this->toHtml(); } }
[-] ConfigurationUrlParser.php
[edit]
[-] composer.json
[edit]
[-] Pluralizer.php
[edit]
[-] ViewErrorBag.php
[edit]
[-] Manager.php
[edit]
[-] MessageBag.php
[edit]
[+]
..
[-] ValidatedInput.php
[edit]
[-] Composer.php
[edit]
[-] ServiceProvider.php
[edit]
[-] DateFactory.php
[edit]
[-] ProcessUtils.php
[edit]
[-] Js.php
[edit]
[-] InteractsWithTime.php
[edit]
[-] AggregateServiceProvider.php
[edit]
[-] Str.php
[edit]
[-] LICENSE.md
[edit]
[-] helpers.php
[edit]
[+]
Facades
[-] Carbon.php
[edit]
[-] Optional.php
[edit]
[-] Reflector.php
[edit]
[+]
Testing
[+]
Traits
[-] Fluent.php
[edit]
[-] Stringable.php
[edit]
[-] Env.php
[edit]
[-] NamespacedItemResolver.php
[edit]
[-] HtmlString.php
[edit]
[-] HigherOrderTapProxy.php
[edit]