clear code

main
ReenExe 8 years ago
parent a0f722a707
commit 53fc30fe56

@ -97,7 +97,9 @@ class Problem
if (defined('HHVM_VERSION')) { if (defined('HHVM_VERSION')) {
return $msg . 'your HHVM version does not satisfy that requirement.'; return $msg . 'your HHVM version does not satisfy that requirement.';
} elseif ($job['packageName'] === 'hhvm') { }
if ($job['packageName'] === 'hhvm') {
return $msg . 'you are running this with PHP and not HHVM.'; return $msg . 'you are running this with PHP and not HHVM.';
} }

@ -208,9 +208,12 @@ class Rule
// handle php/hhvm // handle php/hhvm
if (defined('HHVM_VERSION')) { if (defined('HHVM_VERSION')) {
return $text . ' -> your HHVM version does not satisfy that requirement.'; return $text . ' -> your HHVM version does not satisfy that requirement.';
} elseif ($targetName === 'hhvm') { }
if ($targetName === 'hhvm') {
return $text . ' -> you are running this with PHP and not HHVM.'; return $text . ' -> you are running this with PHP and not HHVM.';
} else { }
$packages = $pool->whatProvides($targetName); $packages = $pool->whatProvides($targetName);
$package = count($packages) ? current($packages) : phpversion(); $package = count($packages) ? current($packages) : phpversion();
@ -228,25 +231,28 @@ class Rule
return $text; return $text;
} }
} elseif (0 === strpos($targetName, 'ext-')) {
if (0 === strpos($targetName, 'ext-')) {
// handle php extensions // handle php extensions
$ext = substr($targetName, 4); $ext = substr($targetName, 4);
$error = extension_loaded($ext) ? 'has the wrong version ('.(phpversion($ext) ?: '0').') installed' : 'is missing from your system'; $error = extension_loaded($ext) ? 'has the wrong version ('.(phpversion($ext) ?: '0').') installed' : 'is missing from your system';
return $text . ' -> the requested PHP extension '.$ext.' '.$error.'.'; return $text . ' -> the requested PHP extension '.$ext.' '.$error.'.';
} elseif (0 === strpos($targetName, 'lib-')) { }
if (0 === strpos($targetName, 'lib-')) {
// handle linked libs // handle linked libs
$lib = substr($targetName, 4); $lib = substr($targetName, 4);
return $text . ' -> the requested linked library '.$lib.' has the wrong version installed or is missing from your system, make sure to have the extension providing it.'; return $text . ' -> the requested linked library '.$lib.' has the wrong version installed or is missing from your system, make sure to have the extension providing it.';
} else { }
if ($providers = $pool->whatProvides($targetName, $this->reasonData->getConstraint(), true, true)) { if ($providers = $pool->whatProvides($targetName, $this->reasonData->getConstraint(), true, true)) {
return $text . ' -> satisfiable by ' . $this->formatPackagesUnique($pool, $providers) .' but these conflict with your requirements or minimum-stability.'; return $text . ' -> satisfiable by ' . $this->formatPackagesUnique($pool, $providers) .' but these conflict with your requirements or minimum-stability.';
} }
return $text . ' -> no matching package found.'; return $text . ' -> no matching package found.';
} }
}
return $text; return $text;

@ -47,12 +47,17 @@ class Platform
{ {
if (false !== ($home = getenv('HOME'))) { if (false !== ($home = getenv('HOME'))) {
return $home; return $home;
} elseif (self::isWindows() && false !== ($home = getenv('USERPROFILE'))) { }
if (self::isWindows() && false !== ($home = getenv('USERPROFILE'))) {
return $home; return $home;
} elseif (function_exists('posix_getuid') && function_exists('posix_getpwuid')) { }
if (function_exists('posix_getuid') && function_exists('posix_getpwuid')) {
$info = posix_getpwuid(posix_getuid()); $info = posix_getpwuid(posix_getuid());
return $info['dir']; return $info['dir'];
} }
throw new \RuntimeException('Could not determine user directory'); throw new \RuntimeException('Could not determine user directory');
} }

@ -161,9 +161,13 @@ class EventDispatcherTest extends TestCase
->will($this->returnCallback(function (Event $event) { ->will($this->returnCallback(function (Event $event) {
if ($event->getName() === 'root') { if ($event->getName() === 'root') {
return array('@group'); return array('@group');
} elseif ($event->getName() === 'group') { }
if ($event->getName() === 'group') {
return array('echo -n foo', '@subgroup', 'echo -n bar'); return array('echo -n foo', '@subgroup', 'echo -n bar');
} elseif ($event->getName() === 'subgroup') { }
if ($event->getName() === 'subgroup') {
return array('echo -n baz'); return array('echo -n baz');
} }
@ -201,7 +205,9 @@ class EventDispatcherTest extends TestCase
->will($this->returnCallback(function (Event $event) { ->will($this->returnCallback(function (Event $event) {
if ($event->getName() === 'root') { if ($event->getName() === 'root') {
return array('@recurse'); return array('@recurse');
} elseif ($event->getName() === 'recurse') { }
if ($event->getName() === 'recurse') {
return array('@root'); return array('@root');
} }

Loading…
Cancel
Save