Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class FeedRequest extends FormRequest |
||
9 | { |
||
10 | /** |
||
11 | * Always return true, as this is just to view the rss feed. |
||
12 | * |
||
13 | * @return bool |
||
14 | */ |
||
15 | public function authorize() |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @return array |
||
22 | */ |
||
23 | public function rules(): array |
||
27 | ]; |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Is this request for an RSS feed or Atom feed? defaults to atom. |
||
32 | * |
||
33 | * @return string |
||
34 | */ |
||
35 | public function getFeedType(): string |
||
42 |