Browse Source

Fix regression in 0b44662087a6cbf0838fccc30d4453c7329e953d, fixes #5199

Jordi Boggiano 9 years ago
parent
commit
4f6693ad70

+ 3 - 2
src/Composer/Autoload/AutoloadGenerator.php

@@ -580,7 +580,8 @@ INCLUDE_PATH;
         }
 
         $file .= <<<STATIC_INIT
-        if (PHP_VERSION_ID >= $staticPhpVersion && !defined('HHVM_VERSION')) {
+        \$useStaticLoader = PHP_VERSION_ID >= $staticPhpVersion && !defined('HHVM_VERSION');
+        if (\$useStaticLoader) {
             require_once __DIR__ . '/autoload_static.php';
 
             call_user_func(\Composer\Autoload\ComposerStaticInit$suffix::getInitializer(\$loader));
@@ -646,7 +647,7 @@ REGISTER_LOADER;
 
         if ($useIncludeFiles) {
             $file .= <<<INCLUDE_FILES
-        if (PHP_VERSION_ID >= $staticPhpVersion) {
+        if (\$useStaticLoader) {
             \$includeFiles = Composer\Autoload\ComposerStaticInit$suffix::\$files;
         } else {
             \$includeFiles = require __DIR__ . '/autoload_files.php';

+ 3 - 2
tests/Composer/Test/Autoload/Fixtures/autoload_real_files_by_dependency.php

@@ -23,7 +23,8 @@ class ComposerAutoloaderInitFilesAutoloadOrder
         self::$loader = $loader = new \Composer\Autoload\ClassLoader();
         spl_autoload_unregister(array('ComposerAutoloaderInitFilesAutoloadOrder', 'loadClassLoader'));
 
-        if (PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION')) {
+        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
+        if ($useStaticLoader) {
             require_once __DIR__ . '/autoload_static.php';
 
             call_user_func(\Composer\Autoload\ComposerStaticInitFilesAutoloadOrder::getInitializer($loader));
@@ -46,7 +47,7 @@ class ComposerAutoloaderInitFilesAutoloadOrder
 
         $loader->register(true);
 
-        if (PHP_VERSION_ID >= 50600) {
+        if ($useStaticLoader) {
             $includeFiles = Composer\Autoload\ComposerStaticInitFilesAutoloadOrder::$files;
         } else {
             $includeFiles = require __DIR__ . '/autoload_files.php';

+ 3 - 2
tests/Composer/Test/Autoload/Fixtures/autoload_real_functions.php

@@ -23,7 +23,8 @@ class ComposerAutoloaderInitFilesAutoload
         self::$loader = $loader = new \Composer\Autoload\ClassLoader();
         spl_autoload_unregister(array('ComposerAutoloaderInitFilesAutoload', 'loadClassLoader'));
 
-        if (PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION')) {
+        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
+        if ($useStaticLoader) {
             require_once __DIR__ . '/autoload_static.php';
 
             call_user_func(\Composer\Autoload\ComposerStaticInitFilesAutoload::getInitializer($loader));
@@ -46,7 +47,7 @@ class ComposerAutoloaderInitFilesAutoload
 
         $loader->register(true);
 
-        if (PHP_VERSION_ID >= 50600) {
+        if ($useStaticLoader) {
             $includeFiles = Composer\Autoload\ComposerStaticInitFilesAutoload::$files;
         } else {
             $includeFiles = require __DIR__ . '/autoload_files.php';

+ 3 - 2
tests/Composer/Test/Autoload/Fixtures/autoload_real_functions_with_include_paths.php

@@ -27,7 +27,8 @@ class ComposerAutoloaderInitFilesAutoload
         array_push($includePaths, get_include_path());
         set_include_path(join(PATH_SEPARATOR, $includePaths));
 
-        if (PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION')) {
+        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
+        if ($useStaticLoader) {
             require_once __DIR__ . '/autoload_static.php';
 
             call_user_func(\Composer\Autoload\ComposerStaticInitFilesAutoload::getInitializer($loader));
@@ -50,7 +51,7 @@ class ComposerAutoloaderInitFilesAutoload
 
         $loader->register(true);
 
-        if (PHP_VERSION_ID >= 50600) {
+        if ($useStaticLoader) {
             $includeFiles = Composer\Autoload\ComposerStaticInitFilesAutoload::$files;
         } else {
             $includeFiles = require __DIR__ . '/autoload_files.php';

+ 2 - 1
tests/Composer/Test/Autoload/Fixtures/autoload_real_functions_with_removed_include_paths_and_autolad_files.php

@@ -23,7 +23,8 @@ class ComposerAutoloaderInitFilesAutoload
         self::$loader = $loader = new \Composer\Autoload\ClassLoader();
         spl_autoload_unregister(array('ComposerAutoloaderInitFilesAutoload', 'loadClassLoader'));
 
-        if (PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION')) {
+        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
+        if ($useStaticLoader) {
             require_once __DIR__ . '/autoload_static.php';
 
             call_user_func(\Composer\Autoload\ComposerStaticInitFilesAutoload::getInitializer($loader));

+ 2 - 1
tests/Composer/Test/Autoload/Fixtures/autoload_real_include_path.php

@@ -23,7 +23,8 @@ class ComposerAutoloaderInitIncludePath
         self::$loader = $loader = new \Composer\Autoload\ClassLoader();
         spl_autoload_unregister(array('ComposerAutoloaderInitIncludePath', 'loadClassLoader'));
 
-        if (PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION')) {
+        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
+        if ($useStaticLoader) {
             require_once __DIR__ . '/autoload_static.php';
 
             call_user_func(\Composer\Autoload\ComposerStaticInitIncludePath::getInitializer($loader));

+ 3 - 2
tests/Composer/Test/Autoload/Fixtures/autoload_real_target_dir.php

@@ -23,7 +23,8 @@ class ComposerAutoloaderInitTargetDir
         self::$loader = $loader = new \Composer\Autoload\ClassLoader();
         spl_autoload_unregister(array('ComposerAutoloaderInitTargetDir', 'loadClassLoader'));
 
-        if (PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION')) {
+        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
+        if ($useStaticLoader) {
             require_once __DIR__ . '/autoload_static.php';
 
             call_user_func(\Composer\Autoload\ComposerStaticInitTargetDir::getInitializer($loader));
@@ -48,7 +49,7 @@ class ComposerAutoloaderInitTargetDir
 
         $loader->register(true);
 
-        if (PHP_VERSION_ID >= 50600) {
+        if ($useStaticLoader) {
             $includeFiles = Composer\Autoload\ComposerStaticInitTargetDir::$files;
         } else {
             $includeFiles = require __DIR__ . '/autoload_files.php';