From: Roland Haeder Date: Sun, 5 Apr 2015 18:48:32 +0000 (+0200) Subject: Keep multi-line comments in their proper way with /* */. X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=640d8871f473e42369642f9d804a9358ce8b525c Keep multi-line comments in their proper way with /* */. Signed-off-by: Roland Häder --- 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