Commit fc915a52 authored by Oana-Eliza Alexa's avatar Oana-Eliza Alexa
Browse files

fix self

2 merge requests!80Resolve "[Orchestrator] - Create a librabry in core orchestrator",!78Draft: Resolve "Redesign lifecycle class"
Pipeline #32354 passed with stages
in 16 seconds
Showing with 1 addition and 1 deletion
+1 -1
...@@ -17,7 +17,7 @@ class Utils ...@@ -17,7 +17,7 @@ class Utils
$filtered = array_filter($array, function ($item) { $filtered = array_filter($array, function ($item) {
if (is_array($item)) { if (is_array($item)) {
// Recursively filter the sub-array // Recursively filter the sub-array
$item = $this->recursiveArrayFilter($item); $item = self::recursiveArrayFilter($item);
// Only retain non-empty arrays // Only retain non-empty arrays
return !empty($item); return !empty($item);
} else { } else {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment