platform/api/laravel/Contracts/View/View.yaml

43 lines
722 B
YAML
Raw Normal View History

2024-09-02 17:44:11 +00:00
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: []