Skip to content

Commit 82c9049

Browse files
authored
remove short notation
1 parent cd76195 commit 82c9049

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Parser/ZipOutputParser.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ public function parseFileListing($output)
6767
$mtime = \DateTime::createFromFormat('H:i Y-m-d', $chunks[2]);
6868
}
6969

70-
($mtime === false) && $mtime = new \DateTime($chunks[2]);
70+
if ($mtime === false) {
71+
$mtime = new \DateTime($chunks[2]);
72+
}
7173

7274
$members[] = array(
7375
'location' => $chunks[3],

0 commit comments

Comments
 (0)