Fix getBinary

This commit is contained in:
Romain Neutron 2012-05-11 00:34:19 +02:00
commit f567f31602
3 changed files with 5 additions and 12 deletions

View file

@ -43,7 +43,7 @@ class BinaryTester extends Binary
protected static function getBinaryName()
{
return 'php';
return array('php');
}
}
@ -53,7 +53,7 @@ class BinaryTesterWrongBinary extends Binary
protected static function getBinaryName()
{
return '';
return array('');
}
}