*
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -197,7 +197,7 @@ class BaseController extends Controller | ... | @@ -197,7 +197,7 @@ class BaseController extends Controller |
197 | $array[$k] = $this->handleSubArrayNumber($v); | 197 | $array[$k] = $this->handleSubArrayNumber($v); |
198 | } else { | 198 | } else { |
199 | $array = array_filter($array, function ($item) { | 199 | $array = array_filter($array, function ($item) { |
200 | if ($item === '' || $item === null || $item === []) { | 200 | if ($item === '' || $item === null) { |
201 | return false; | 201 | return false; |
202 | } else { | 202 | } else { |
203 | return true; | 203 | return true; | ... | ... |
-
Please register or sign in to post a comment