From aa26715645c3987a3f6ee065b1cf1d4afe30cfc4 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Thu, 12 Jun 2014 14:17:17 +0000 Subject: [PATCH] A variable was used without initialisation in CLI git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@1440 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- cli.php | 1 + 1 file changed, 1 insertion(+) diff --git a/cli.php b/cli.php index f1dd915..529adb4 100644 --- a/cli.php +++ b/cli.php @@ -170,6 +170,7 @@ class cli if ($found === FALSE) die ("Method '$method' not available in class '$class'\n"); $min = 0; $max = 0; + $paramsConst = array (); try { $r = new ReflectionMethod ($class, "__construct");