File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public function has($keys)
40
40
$ keys = is_array ($ keys ) ? $ keys : func_get_args ();
41
41
42
42
foreach ($ keys as $ key ) {
43
- if (! Arr::has ($ this ->input , $ key )) {
43
+ if (! Arr::has ($ this ->all () , $ key )) {
44
44
return false ;
45
45
}
46
46
}
@@ -69,7 +69,7 @@ public function only($keys)
69
69
{
70
70
$ results = [];
71
71
72
- $ input = $ this ->input ;
72
+ $ input = $ this ->all () ;
73
73
74
74
$ placeholder = new stdClass ;
75
75
@@ -94,7 +94,7 @@ public function except($keys)
94
94
{
95
95
$ keys = is_array ($ keys ) ? $ keys : func_get_args ();
96
96
97
- $ results = $ this ->input ;
97
+ $ results = $ this ->all () ;
98
98
99
99
Arr::forget ($ results , $ keys );
100
100
@@ -109,7 +109,7 @@ public function except($keys)
109
109
*/
110
110
public function merge (array $ items )
111
111
{
112
- return new static (array_merge ($ this ->input , $ items ));
112
+ return new static (array_merge ($ this ->all () , $ items ));
113
113
}
114
114
115
115
/**
You can’t perform that action at this time.
0 commit comments