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 2706afb commit c105b80Copy full SHA for c105b80
lib/GraphApplication.php
@@ -15,7 +15,7 @@ final class GraphApplication
15
public function start(string $jsonGlob): int
16
{
17
$jsonFiles = glob($jsonGlob, GLOB_NOSORT);
18
- \Safe\usort( $jsonFiles, function( $a, $b ) {
+ \Safe\usort( $jsonFiles, function( string $a, string $b ) {
19
return \Safe\filemtime($a) - \Safe\filemtime($b);
20
});
21
0 commit comments