$v) {
$newList[$v['id']] = $v;
}
foreach ($newList as $value) {
if ($parentId == $value['parent_id']) {
$tree[] = &$newList[$value['id']];
} elseif (isset($newList[$value['parent_id']])) {
$newList[$value['parent_id']]['children'][] = &$newList[$value['id']];
}
}
return $tree;
}
}
if (!function_exists('text_diff')) {
function text_diff(string $text1, string $text2): string
{
$text1 = str_replace(' ', '', trim($text1));
$text2 = str_replace(' ', '', trim($text2));
$w = explode("\n", $text1);
$o = explode("\n", $text2);
$w1 = array_diff_assoc($w,$o);
$o1 = array_diff_assoc($o,$w);
$w2 = array();
$o2 = array();
foreach($w1 as $idx => $val) $w2[sprintf("%03d<",$idx)] = sprintf("%03d- ", $idx+1) . "" . trim($val) . "";
foreach($o1 as $idx => $val) $o2[sprintf("%03d>",$idx)] = sprintf("%03d+ ", $idx+1) . "" . trim($val) . "";
$diff = array_merge($w2, $o2);
ksort($diff);
return implode("\n", $diff);
}
}
if (!function_exists('throw_validation_if')) {
function throw_validation_if($condition, ...$parameters) {
return throw_if($condition, \App\Exceptions\ValidationException::class, ...$parameters);
}
}