Browse Source

Fix undef var

Jordi Boggiano 5 years ago
parent
commit
67317a13bb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Packagist/WebBundle/Package/SymlinkDumper.php

+ 1 - 1
src/Packagist/WebBundle/Package/SymlinkDumper.php

@@ -868,7 +868,7 @@ class SymlinkDumper
         file_put_contents($path, $contents);
 
         if (is_array($this->writeLog)) {
-            $this->writeLog[$path] = array($contents, $mtime);
+            $this->writeLog[$path] = array($contents, null);
         }
     }