Fix tests on PHP 5.4

This commit is contained in:
Romain Neutron
2012-09-27 01:46:18 +02:00
parent d4f466ef63
commit 0ac8a9d8ae
107 changed files with 196 additions and 175 deletions

View File

@@ -85,7 +85,7 @@ class module_console_systemConfigCheck extends Command
return (int) ! $ok;
}
protected function processConstraints(Setup_ConstraintsIterator $constraints, OutputInterface &$output)
protected function processConstraints(Setup_ConstraintsIterator $constraints, OutputInterface $output)
{
$hasError = false;
foreach ($constraints as $constraint) {
@@ -97,7 +97,7 @@ class module_console_systemConfigCheck extends Command
return ! $hasError;
}
protected function processConstraint(Setup_Constraint $constraint, OutputInterface &$output)
protected function processConstraint(Setup_Constraint $constraint, OutputInterface $output)
{
$ok = true;
if ($constraint->is_ok()) {