Misc cleanup (#12758)

* Fix Docblock

* Misc

* Parameter #2 $callback of function array_filter expects (callable(mixed, mixed): bool)|null, 'strlen' given

* Parameter #2 $data of function hash_hmac expects string, int given

* Unreachable statement - code above always terminates.

* Update Device.php
This commit is contained in:
Jellyfrog
2021-04-20 12:47:22 +02:00
committed by GitHub
parent cea6f13bf5
commit a8c8a9a4a2
12 changed files with 24 additions and 17 deletions

View File

@ -154,7 +154,8 @@ class DeviceDependencyController extends MapController
$devices_by_id = $this->highlightDevices($devices_by_id, $this->parentDeviceIds);
}
array_multisort(array_column($device_list, 'label'), SORT_ASC, $device_list);
$device_list_labels = array_column($device_list, 'label');
array_multisort($device_list_labels, SORT_ASC, $device_list);
$group_name = DeviceGroup::where('id', '=', $group_id)->first('name');
if (! empty($group_name)) {