Skip to content

Commit

Permalink
Update GraphApplication.php
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm committed Mar 31, 2023
1 parent 2706afb commit c105b80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/GraphApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final class GraphApplication
public function start(string $jsonGlob): int
{
$jsonFiles = glob($jsonGlob, GLOB_NOSORT);
\Safe\usort( $jsonFiles, function( $a, $b ) {
\Safe\usort( $jsonFiles, function( string $a, string $b ) {
return \Safe\filemtime($a) - \Safe\filemtime($b);
});

Expand Down

0 comments on commit c105b80

Please sign in to comment.