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 cd76195 commit 82c9049Copy full SHA for 82c9049
src/Parser/ZipOutputParser.php
@@ -67,7 +67,9 @@ public function parseFileListing($output)
67
$mtime = \DateTime::createFromFormat('H:i Y-m-d', $chunks[2]);
68
}
69
70
- ($mtime === false) && $mtime = new \DateTime($chunks[2]);
+ if ($mtime === false) {
71
+ $mtime = new \DateTime($chunks[2]);
72
+ }
73
74
$members[] = array(
75
'location' => $chunks[3],
0 commit comments