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 7712809 commit 698ff67Copy full SHA for 698ff67
1 file changed
lib/GraphApplication.php
@@ -15,7 +15,9 @@ final class GraphApplication
15
public function start(string $jsonGlob): int
16
{
17
$jsonFiles = glob($jsonGlob, GLOB_NOSORT);
18
- usort( $jsonFiles, function( $a, $b ) { return filemtime($a) - filemtime($b); } );
+ usort( $jsonFiles, function( $a, $b ) {
19
+ return \Safe\filemtime($a) - \Safe\filemtime($b);
20
+ });
21
22
$it = $this->iterateOverFiles($jsonFiles);
23
0 commit comments