From: Roland Häder Date: Tue, 24 Mar 2009 10:26:48 +0000 (+0000) Subject: Double-quotes rewritten to single-quotes X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=f8c1e2e77cfb83f4b70e479227b49095d321ad37;hp=dcdc9e7628be1422435821fc4ca9d7f82bb3ec6e Double-quotes rewritten to single-quotes --- diff --git a/application/mxchange/data.php b/application/mxchange/data.php index e767ef0adc..1923385669 100644 --- a/application/mxchange/data.php +++ b/application/mxchange/data.php @@ -38,7 +38,7 @@ $cfg = FrameworkConfiguration::getInstance(); // Get an instance of the helper $app = call_user_func_array( - array($cfg->readConfig('app_helper_class'), "getInstance"), + array($cfg->readConfig('app_helper_class'), 'getInstance'), array() ); diff --git a/application/mxchange/starter.php b/application/mxchange/starter.php index c5ed583d91..4586718874 100644 --- a/application/mxchange/starter.php +++ b/application/mxchange/starter.php @@ -24,7 +24,7 @@ // Is there an application helper instance? We need the method main() for // maining the application -$app = call_user_func_array(array(FrameworkConfiguration::getInstance()->readConfig('app_helper_class'), "getInstance"), array()); +$app = call_user_func_array(array(FrameworkConfiguration::getInstance()->readConfig('app_helper_class'), 'getInstance'), array()); // Some sanity checks if ((empty($app)) || (is_null($app))) {