Inheritance diagram for App\Http\Requests\AssetCheckinRequest:
App\Http\Requests\Request

Public Member Functions

 authorize ()
Determine if the user is authorized to make this request. More...
 
 rules ()
Get the validation rules that apply to the request. More...
 
 response (array $errors)
 

Protected Attributes

 $rules = []
 

Detailed Description

Definition at line 7 of file AssetCheckinRequest.php.

Member Function Documentation

App\Http\Requests\AssetCheckinRequest::authorize ( )

Determine if the user is authorized to make this request.

Returns
bool

Definition at line 14 of file AssetCheckinRequest.php.

15  {
16  return true;
17  }
App\Http\Requests\AssetCheckinRequest::response ( array  $errors)

Definition at line 31 of file AssetCheckinRequest.php.

32  {
33  return $this->redirector->back()->withInput()->withErrors($errors, $this->errorBag);
34  }
App\Http\Requests\AssetCheckinRequest::rules ( )

Get the validation rules that apply to the request.

Returns
array

Definition at line 24 of file AssetCheckinRequest.php.

25  {
26  return [
27 
28  ];
29  }

Member Data Documentation

App\Http\Requests\Request::$rules = []
protectedinherited

Definition at line 9 of file Request.php.


The documentation for this class was generated from the following file: