api/laravel/Contracts/View/View.yaml
2024-09-26 02:03:21 -07:00

42 lines
722 B
YAML

name: View
class_comment: null
dependencies:
- name: Renderable
type: class
source: Illuminate\Contracts\Support\Renderable
properties: []
methods:
- name: name
visibility: public
parameters: []
comment: '# * Get the name of the view.
# *
# * @return string'
- name: with
visibility: public
parameters:
- name: key
- name: value
default: 'null'
comment: '# * Add a piece of data to the view.
# *
# * @param string|array $key
# * @param mixed $value
# * @return $this'
- name: getData
visibility: public
parameters: []
comment: '# * Get the array of view data.
# *
# * @return array'
traits:
- Illuminate\Contracts\Support\Renderable
interfaces: []