From e4a1d27dcbe030a9dfbc649494d2cefa04bb81be Mon Sep 17 00:00:00 2001 From: Christopher Vagnetoft Date: Tue, 10 Jan 2017 15:33:49 +0100 Subject: [PATCH] Fixed bug where props would stack --- src/MakePhar/Manifest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MakePhar/Manifest.php b/src/MakePhar/Manifest.php index 2f478ae..7efdedf 100644 --- a/src/MakePhar/Manifest.php +++ b/src/MakePhar/Manifest.php @@ -75,6 +75,7 @@ class Manifest } break; case 'props': + $props = []; if ($src = (string)$child->getValue()) { if (!file_exists($src)) { log_warn("Property file %s not found", $src);