diff --git a/src/FormBuilder.php b/src/FormBuilder.php index 412c92d..6abee5b 100644 --- a/src/FormBuilder.php +++ b/src/FormBuilder.php @@ -124,10 +124,10 @@ class FormBuilder /** * Create a new form builder instance. * - * @param Factory $view - * @param string|null $csrfToken - * @param UrlGenerator|null $url - * @param Request|null $request + * @param Factory $view + * @param string|null $csrfToken + * @param UrlGenerator|null $url + * @param Request|null $request */ public function __construct(Factory $view, string $csrfToken = null, UrlGenerator $url = null, Request $request = null) { @@ -144,8 +144,8 @@ public function __construct(Factory $view, string $csrfToken = null, UrlGenerato /** * Dynamically handle calls to the class. * - * @param string $method - * @param array $parameters + * @param string $method + * @param array $parameters * @return mixed * * @throws BadMethodCallException @@ -177,7 +177,7 @@ public function getSessionStore(): Session /** * Set the session store implementation. * - * @param Session $session + * @param Session $session * @return $this */ public function setSessionStore(Session $session): self @@ -190,8 +190,8 @@ public function setSessionStore(Session $session): self /** * Create a new model based form builder. * - * @param mixed $model - * @param array $options + * @param mixed $model + * @param array $options * @return HtmlString */ public function model($model, array $options = []) @@ -205,7 +205,7 @@ public function model($model, array $options = []) * Open up a new HTML form. * Form::open() * - * @param array $options + * @param array $options * @return HtmlString */ public function open(array $options = []) @@ -244,13 +244,13 @@ public function open(array $options = []) // extra value for the hidden _method field if it's needed for the form. $attributes = $this->attributes($attributes); - return $this->toHtmlString('