Skip to content
This repository was archived by the owner on Aug 30, 2020. It is now read-only.

Commit 2b6e5c1

Browse files
committed
add phpdoc for ide autocomplete
1 parent 2a04da5 commit 2b6e5c1

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

src/Facades/BsForm.php

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@
44

55
use Illuminate\Support\Facades\Facade;
66

7+
/**
8+
* Class BsForm
9+
* @method static \Elnooronline\LaravelBootstrapForms\Components\TextComponent text($name = null, $value = null)
10+
* @method static \Elnooronline\LaravelBootstrapForms\Components\EmailComponent email($name = null, $value = null)
11+
* @method static \Elnooronline\LaravelBootstrapForms\Components\PasswordComponent password($name = null, $value = null)
12+
* @method static \Elnooronline\LaravelBootstrapForms\Components\TextareaComponent textarea($name = null, $value = null)
13+
* @method static \Elnooronline\LaravelBootstrapForms\Components\CheckboxComponent checkbox($name = null, $value = null, $checked = false)
14+
* @method static \Elnooronline\LaravelBootstrapForms\Components\RadioComponent radio($name = null, $value = null, $checked = false)
15+
* @method static \Elnooronline\LaravelBootstrapForms\Components\DateComponent date($name = null, $value = null)
16+
* @method static \Elnooronline\LaravelBootstrapForms\Components\FileComponent file($name = null)
17+
* @method static \Elnooronline\LaravelBootstrapForms\Components\NumberComponent number($name = null, $value = null)
18+
* @method static \Elnooronline\LaravelBootstrapForms\Components\SelectComponent select($name = null, $options = [], $value = null)
19+
* @method static \Elnooronline\LaravelBootstrapForms\Components\SubmitComponent submit($label = null, $name = null)
20+
* @method static \Elnooronline\LaravelBootstrapForms\BsForm open($url, $attributes = [])
21+
* @method static \Elnooronline\LaravelBootstrapForms\BsForm resource($resource)
22+
* @method static \Elnooronline\LaravelBootstrapForms\BsForm locale($locale = null)
23+
* @method static \Elnooronline\LaravelBootstrapForms\BsForm style($style = null)
24+
* @method static \Elnooronline\LaravelBootstrapForms\BsForm clearStyle()
25+
* @method static \Elnooronline\LaravelBootstrapForms\BsForm inlineValidation($bool = true)
26+
* @method static \Illuminate\Support\HtmlString close()
27+
*
28+
* @package Elnooronline\LaravelBootstrapForms\Facades
29+
*/
730
class BsForm extends Facade
831
{
932
/**

0 commit comments

Comments
 (0)