Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
bnomei authored and github-actions[bot] committed Aug 20, 2024
1 parent f7f0455 commit 14b4eaa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion classes/Autoloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,8 @@ public static function pascalToDotCase(string $string): string
return ltrim(strtolower((string) preg_replace('/[A-Z]([A-Z](?![a-z]))*/', '.$0', $string)), '.');
}

public static function array_merge_recursive_distinct(array $array1, array $array2) {
public static function array_merge_recursive_distinct(array $array1, array $array2)

Check failure on line 440 in classes/Autoloader.php

View workflow job for this annotation

GitHub Actions / phpstan

Method Bnomei\Autoloader::array_merge_recursive_distinct() has no return type specified.
{
$merged = $array1;

foreach ($array2 as $key => $value) {
Expand Down

0 comments on commit 14b4eaa

Please sign in to comment.