SubscriptionRequest.php in FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler 1.6.4, at app/Http/Requests/SubscriptionRequest.php
| 1 | <?php |
| 2 | |
| 3 | namespace FluentCart\App\Http\Requests; |
| 4 | |
| 5 | use FluentCart\Framework\Foundation\RequestGuard; |
| 6 | |
| 7 | class SubscriptionRequest extends RequestGuard |
| 8 | { |
| 9 | |
| 10 | /** |
| 11 | * @return array |
| 12 | */ |
| 13 | public function rules() |
| 14 | { |
| 15 | return []; |
| 16 | } |
| 17 | |
| 18 | |
| 19 | /** |
| 20 | * @return array |
| 21 | */ |
| 22 | public function messages() |
| 23 | { |
| 24 | return []; |
| 25 | } |
| 26 | |
| 27 | |
| 28 | /** |
| 29 | * @return array |
| 30 | */ |
| 31 | public function sanitize() |
| 32 | { |
| 33 | return []; |
| 34 | } |
| 35 | } |