akaunting/app/Http/Requests/Common/Notification.php

22 lines
376 B
PHP
Raw Normal View History

2018-11-17 13:13:15 +03:00
<?php
namespace App\Http\Requests\Common;
2019-11-16 10:21:14 +03:00
use App\Abstracts\Http\FormRequest;
2018-11-17 13:13:15 +03:00
2019-11-16 10:21:14 +03:00
class Notification extends FormRequest
2018-11-17 13:13:15 +03:00
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'path' => 'required|string',
'id' => 'required|integer',
];
}
}