A variable was used without initialisation in CLI

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@1440 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2014-06-12 14:17:17 +00:00
parent ab6a4715ac
commit aa26715645

View File

@@ -170,6 +170,7 @@ class cli
if ($found === FALSE) if ($found === FALSE)
die ("Method '$method' not available in class '$class'\n"); die ("Method '$method' not available in class '$class'\n");
$min = 0; $max = 0; $min = 0; $max = 0;
$paramsConst = array ();
try try
{ {
$r = new ReflectionMethod ($class, "__construct"); $r = new ReflectionMethod ($class, "__construct");