Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
DeleteInAppNotificationCampaignRequest
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 rules
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3namespace App\Http\Requests\v2\InAppNotification;
4
5use App\Http\Requests\v2\Parameter\Concerns\AuthorizesVengresoAdmin;
6use Illuminate\Foundation\Http\FormRequest;
7
8/**
9 * Request for deleting an in-app notification campaign (admin only).
10 */
11class DeleteInAppNotificationCampaignRequest extends FormRequest
12{
13    use AuthorizesVengresoAdmin;
14
15    /**
16     * Get the validation rules that apply to the request.
17     *
18     * @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
19     */
20    public function rules(): array
21    {
22        return [];
23    }
24}