From 640d8871f473e42369642f9d804a9358ce8b525c Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sun, 5 Apr 2015 20:48:32 +0200 Subject: [PATCH] Keep multi-line comments in their proper way with /* */. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- inc/classes/main/commands/web/class_WebConfirmCommand.php | 8 +++++--- inc/classes/main/commands/web/class_WebHomeCommand.php | 8 +++++--- .../main/commands/web/class_WebLoginAreaCommand.php | 8 +++++--- inc/classes/main/commands/web/class_WebLoginCommand.php | 8 +++++--- .../main/commands/web/class_WebLoginFailedCommand.php | 8 +++++--- .../main/commands/web/class_WebLogoutDoneCommand.php | 8 +++++--- .../main/commands/web/class_WebRegisterCommand.php | 8 +++++--- inc/classes/main/commands/web/class_WebStatusCommand.php | 8 +++++--- 8 files changed, 40 insertions(+), 24 deletions(-) diff --git a/inc/classes/main/commands/web/class_WebConfirmCommand.php b/inc/classes/main/commands/web/class_WebConfirmCommand.php index 6c763e1a..7c3d3ec9 100644 --- a/inc/classes/main/commands/web/class_WebConfirmCommand.php +++ b/inc/classes/main/commands/web/class_WebConfirmCommand.php @@ -119,9 +119,11 @@ class WebConfirmCommand extends BaseCommand implements Commandable { // Transfer it to the template engine instance $menuInstance->transferContentToTemplateEngine($templateInstance); - // ... and all variables. This should be merged together in a pattern - // to make things easier. A cache mechanism should be added between - // these two calls to cache compiled templates. + /* + * ... and all variables. This should be merged together in a pattern + * to make things easier. A cache mechanism should be added between + * these two calls to cache compiled templates. + */ $templateInstance->compileVariables(); // Get the content back from the template engine and put it in response class diff --git a/inc/classes/main/commands/web/class_WebHomeCommand.php b/inc/classes/main/commands/web/class_WebHomeCommand.php index c8e49832..3eb7790f 100644 --- a/inc/classes/main/commands/web/class_WebHomeCommand.php +++ b/inc/classes/main/commands/web/class_WebHomeCommand.php @@ -105,9 +105,11 @@ class WebHomeCommand extends BaseCommand implements Commandable { // Transfer it to the template engine instance $menuInstance->transferContentToTemplateEngine($templateInstance); - // ... and all variables. This should be merged together in a pattern - // to make things easier. A cache mechanism should be added between - // these two calls to cache compiled templates. + /* + * ... and all variables. This should be merged together in a pattern + * to make things easier. A cache mechanism should be added between + * these two calls to cache compiled templates. + */ $templateInstance->compileVariables(); // Get the content back from the template engine and put it in response class diff --git a/inc/classes/main/commands/web/class_WebLoginAreaCommand.php b/inc/classes/main/commands/web/class_WebLoginAreaCommand.php index 5a364e5e..73af08bf 100644 --- a/inc/classes/main/commands/web/class_WebLoginAreaCommand.php +++ b/inc/classes/main/commands/web/class_WebLoginAreaCommand.php @@ -142,9 +142,11 @@ class WebLoginAreaCommand extends BaseCommand implements Commandable { // Transfer it to the template engine instance $menuInstance->transferContentToTemplateEngine($templateInstance); - // ... and all variables. This should be merged together in a pattern - // to make things easier. A cache mechanism should be added between - // these two calls to cache compiled templates. + /* + * ... and all variables. This should be merged together in a pattern + * to make things easier. A cache mechanism should be added between + * these two calls to cache compiled templates. + */ $templateInstance->compileVariables(); // Get the content back from the template engine and put it in response class diff --git a/inc/classes/main/commands/web/class_WebLoginCommand.php b/inc/classes/main/commands/web/class_WebLoginCommand.php index ad6f4b12..a594a8c7 100644 --- a/inc/classes/main/commands/web/class_WebLoginCommand.php +++ b/inc/classes/main/commands/web/class_WebLoginCommand.php @@ -111,9 +111,11 @@ class WebLoginCommand extends BaseCommand implements Commandable, Registerable { // Transfer it to the template engine instance $menuInstance->transferContentToTemplateEngine($templateInstance); - // ... and all variables. This should be merged together in a pattern - // to make things easier. A cache mechanism should be added between - // these two calls to cache compiled templates. + /* + * ... and all variables. This should be merged together in a pattern + * to make things easier. A cache mechanism should be added between + * these two calls to cache compiled templates. + */ $templateInstance->compileVariables(); // Get the content back from the template engine and put it in response class diff --git a/inc/classes/main/commands/web/class_WebLoginFailedCommand.php b/inc/classes/main/commands/web/class_WebLoginFailedCommand.php index d08c7c8c..60ea219c 100644 --- a/inc/classes/main/commands/web/class_WebLoginFailedCommand.php +++ b/inc/classes/main/commands/web/class_WebLoginFailedCommand.php @@ -108,9 +108,11 @@ class WebLoginFailedCommand extends BaseCommand implements Commandable { // Transfer it to the template engine instance $menuInstance->transferContentToTemplateEngine($templateInstance); - // ... and all variables. This should be merged together in a pattern - // to make things easier. A cache mechanism should be added between - // these two calls to cache compiled templates. + /* + * ... and all variables. This should be merged together in a pattern + * to make things easier. A cache mechanism should be added between + * these two calls to cache compiled templates. + */ $templateInstance->compileVariables(); // Get the content back from the template engine and put it in response class diff --git a/inc/classes/main/commands/web/class_WebLogoutDoneCommand.php b/inc/classes/main/commands/web/class_WebLogoutDoneCommand.php index 22290308..269f19a8 100644 --- a/inc/classes/main/commands/web/class_WebLogoutDoneCommand.php +++ b/inc/classes/main/commands/web/class_WebLogoutDoneCommand.php @@ -108,9 +108,11 @@ class WebLogoutDoneCommand extends BaseCommand implements Commandable { // Transfer it to the template engine instance $menuInstance->transferContentToTemplateEngine($templateInstance); - // ... and all variables. This should be merged together in a pattern - // to make things easier. A cache mechanism should be added between - // these two calls to cache compiled templates. + /* + * ... and all variables. This should be merged together in a pattern + * to make things easier. A cache mechanism should be added between + * these two calls to cache compiled templates. + */ $templateInstance->compileVariables(); // Get the content back from the template engine and put it in response class diff --git a/inc/classes/main/commands/web/class_WebRegisterCommand.php b/inc/classes/main/commands/web/class_WebRegisterCommand.php index 8486c9de..de17bc33 100644 --- a/inc/classes/main/commands/web/class_WebRegisterCommand.php +++ b/inc/classes/main/commands/web/class_WebRegisterCommand.php @@ -112,9 +112,11 @@ class WebRegisterCommand extends BaseCommand implements Commandable, Registerabl // Transfer it to the template engine instance $menuInstance->transferContentToTemplateEngine($templateInstance); - // ... and all variables. This should be merged together in a pattern - // to make things easier. A cache mechanism should be added between - // these two calls to cache compiled templates. + /* + * ... and all variables. This should be merged together in a pattern + * to make things easier. A cache mechanism should be added between + * these two calls to cache compiled templates. + */ $templateInstance->compileVariables(); // Get the content back from the template engine and put it in response class diff --git a/inc/classes/main/commands/web/class_WebStatusCommand.php b/inc/classes/main/commands/web/class_WebStatusCommand.php index cb638862..3946c822 100644 --- a/inc/classes/main/commands/web/class_WebStatusCommand.php +++ b/inc/classes/main/commands/web/class_WebStatusCommand.php @@ -106,9 +106,11 @@ class WebStatusCommand extends BaseCommand implements Commandable { // Transfer it to the template engine instance $menuInstance->transferContentToTemplateEngine($templateInstance); - // ... and all variables. This should be merged together in a pattern - // to make things easier. A cache mechanism should be added between - // these two calls to cache compiled templates. + /* + * ... and all variables. This should be merged together in a pattern + * to make things easier. A cache mechanism should be added between + * these two calls to cache compiled templates. + */ $templateInstance->compileVariables(); // Get the content back from the template engine and put it in response class -- 2.30.2