We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5a099 commit b569692Copy full SHA for b569692
CHANGELOG.md
@@ -2,6 +2,12 @@
2
3
All notable changes to `laravel-word-refiner` will be documented in this file.
4
5
+## 0.1.5 - 2018-12-28
6
+- Handle array exception
7
+
8
+## 0.1.4 - 2018-12-28
9
+- Change in name space
10
11
## 0.1.3 - 2018-12-21
12
13
- Update Content
src/helpers.php
@@ -8,6 +8,9 @@
function refiner($request)
{
try {
+ if (is_array($request)) {
+ return $request;
+ }
14
$requestData = $request->all();
15
if ($requestData) {
16
foreach ($requestData as $individualKey => $individualValue) {
0 commit comments