From 35b77cca7815be1231ddc4aace454e9b81eb9ee7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 9 Dec 2008 18:36:50 +0000 Subject: [PATCH] Castings rewritten --- application/mxchange/class_ApplicationHelper.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/application/mxchange/class_ApplicationHelper.php b/application/mxchange/class_ApplicationHelper.php index be2b499d23..abd1f36a58 100644 --- a/application/mxchange/class_ApplicationHelper.php +++ b/application/mxchange/class_ApplicationHelper.php @@ -111,8 +111,7 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica */ public final function setAppVersion ($appVersion) { // Cast and set it - $appVersion = (string) $appVersion; - $this->appVersion = $appVersion; + $this->appVersion = (string) $appVersion; } /** @@ -132,8 +131,7 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica */ public final function setAppName ($appName) { // Cast and set it - $appName = (string) $appName; - $this->appName = $appName; + $this->appName = (string) $appName; } /** @@ -153,8 +151,7 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica */ public final function setAppShortName ($shortName) { // Cast and set it - $shortName = (string) $shortName; - $this->shortName = $shortName; + $this->shortName = (string) $shortName; } /** -- 2.39.2