diff --git a/include/cli/modules/package.php b/include/cli/modules/package.php
index e1649e77890e3529bf86c12b3057f1dead5815e6..eedc187c2d229609b3ca6470539a186e65b18a25 100644
--- a/include/cli/modules/package.php
+++ b/include/cli/modules/package.php
@@ -108,8 +108,8 @@ class Packager extends Deployment {
         if (!$zip->open($name, ZipArchive::CREATE | ZipArchive::OVERWRITE) === true)
             return false;
 
-        $php56 = version_compare(phpversion(), '5.6.0', '>');
-        $addFiles = function($dir) use (&$addFiles, $zip, $path, $php56) {
+        $php56plus = version_compare(phpversion(), '5.6.0', '>');
+        $addFiles = function($dir) use (&$addFiles, $zip, $path, $php56plus) {
             $files = array_diff(scandir($dir), array('.','..'));
             $path = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
             foreach ($files as $file) {
@@ -122,7 +122,7 @@ class Packager extends Deployment {
                     //      out of OS open file handles
                     $zip->addFromString($local, file_get_contents($full));
                     // This only works on PHP >= v5.6
-                    if ($php56) {
+                    if ($php56plus) {
                         // Set the Unix mode of the file
                         $stat = stat($full);
                         $zip->setExternalAttributesName($local, ZipArchive::OPSYS_UNIX, $stat['mode'] << 16);