From 4e15b703732659af15209d36b4d60df215483866 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sun, 28 Aug 2016 12:40:16 +0200 Subject: [PATCH] fix Scrutinizer docu bug: Egw::setup() need to support null for $domain_names parameter --- api/src/Egw.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Egw.php b/api/src/Egw.php index 6c8687c968..de3a7d612b 100644 --- a/api/src/Egw.php +++ b/api/src/Egw.php @@ -68,7 +68,7 @@ class Egw extends Egw\Base * Called every time the constructor is called. Also called by sessions to ensure the correct db, * in which case we do not recreate the session object. * @author RalfBecker@outdoor-training.de (moved to setup() by milos@groupwhere.org - * @param array $domain_names array with valid egw-domain names + * @param array|null $domain_names =null array with valid egw-domain names * @param boolean $createsessionobject True to create the session object (default=True) */ function setup($domain_names,$createsessionobject=True)