Updated ApplicationHelper class to latest API
authorRoland Häder <roland@mxchange.org>
Thu, 20 Dec 2012 21:19:10 +0000 (21:19 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 20 Dec 2012 21:19:10 +0000 (21:19 +0000)
application/mailer/class_ApplicationHelper.php

index 5762ce3911f9c206e10aadeab27c433b0b9f1c0d..869db169ad880fb6bdaea0748516c7f533568535 100644 (file)
@@ -43,17 +43,17 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
        /**
         * The version number of this application
         */
        /**
         * The version number of this application
         */
-       private $appVersion = "";
+       private $appVersion = '';
 
        /**
         * The human-readable name for this application
         */
 
        /**
         * The human-readable name for this application
         */
-       private $appName = "";
+       private $appName = '';
 
        /**
         * The short uni*-like name for this application
         */
 
        /**
         * The short uni*-like name for this application
         */
-       private $shortName = "";
+       private $shortName = '';
 
        /**
         * An instance of a controller
 
        /**
         * An instance of a controller
@@ -160,7 +160,7 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
         */
        public function buildMasterTemplateName () {
                // Get short name and add suffix
         */
        public function buildMasterTemplateName () {
                // Get short name and add suffix
-               $masterTemplateName = str_replace("-", "", $this->getAppShortName()) . "_main";
+               $masterTemplateName = str_replace('-', '', $this->getAppShortName()) . '_main';
 
                // Return it
                return $masterTemplateName;
 
                // Return it
                return $masterTemplateName;