We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e99b46e commit a7751a7Copy full SHA for a7751a7
lib/GraphApplication.php
@@ -17,7 +17,7 @@ final class GraphApplication
17
public function start(string $jsonGlob): int
18
{
19
$jsonFiles = glob($jsonGlob, GLOB_NOSORT);
20
- \Safe\usort( $jsonFiles, function( $a, $b ) {
+ \Safe\usort( $jsonFiles, function( string $a, string $b ) {
21
return \Safe\filemtime($a) - \Safe\filemtime($b);
22
});
23
0 commit comments