api/laravel/Support/HtmlString.yaml
2024-09-26 02:03:21 -07:00

63 lines
1.2 KiB
YAML

name: HtmlString
class_comment: null
dependencies:
- name: Htmlable
type: class
source: Illuminate\Contracts\Support\Htmlable
- name: Stringable
type: class
source: Stringable
properties:
- name: html
visibility: protected
comment: '# * The HTML string.
# *
# * @var string'
methods:
- name: __construct
visibility: public
parameters:
- name: html
default: ''''''
comment: "# * The HTML string.\n# *\n# * @var string\n# */\n# protected $html;\n\
# \n# /**\n# * Create a new HTML string instance.\n# *\n# * @param string $html\n\
# * @return void"
- name: toHtml
visibility: public
parameters: []
comment: '# * Get the HTML string.
# *
# * @return string'
- name: isEmpty
visibility: public
parameters: []
comment: '# * Determine if the given HTML string is empty.
# *
# * @return bool'
- name: isNotEmpty
visibility: public
parameters: []
comment: '# * Determine if the given HTML string is not empty.
# *
# * @return bool'
- name: __toString
visibility: public
parameters: []
comment: '# * Get the HTML string.
# *
# * @return string'
traits:
- Illuminate\Contracts\Support\Htmlable
- Stringable
interfaces:
- Htmlable