8000 Use Input facade in Reply and Thread validation. · laravelio/laravel.io@71ac8ae · GitHub
[go: up one dir, main page]

Skip to content

Commit 71ac8ae

Browse files
Use Input facade in Reply and Thread validation.
1 parent d1ec1e2 commit 71ac8ae

File tree

2 files changed

+2
-1
lines changed

app/Lio/Forum/Replies/ReplyForm.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php namespace Lio\Forum\Replies;
22

33
use Lio\Core\FormModel;
4+
use Input;
45

56
class ReplyForm extends FormModel
67
{

app/Lio/Forum/Threads/ThreadForm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php namespace Lio\Forum\Threads;
22

33
use Lio\Core\FormModel;
4-
use App, Validator;
4+
use App, Input, Validator;
55

66
class ThreadForm extends FormModel
77
{

0 commit comments

Comments
 (0)
0