]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/CreateDoxygen.php
Merge pull request #11524 from annando/cache-endpoints
[friendica.git] / src / Console / CreateDoxygen.php
index 0196839e3da9269a4c26d6892aa3974067a93c52..f7cdeaa3ef0110c8c04ab7d70aa1e81696049784 100644 (file)
@@ -1,11 +1,28 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Console;
 
 /**
  * Description of CreateDoxygen
- *
- * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 class CreateDoxygen extends \Asika\SimpleConsole\Console
 {
@@ -56,7 +73,7 @@ HELP;
 
                $previous = "";
 
-               foreach ($lines AS $line) {
+               foreach ($lines as $line) {
                        $line = rtrim(trim($line, "\r"));
 
                        if (strstr(strtolower($line), "function")) {
@@ -105,7 +122,7 @@ HELP;
        }
 
        /**
-        * @brief Adds a doxygen header
+        * Adds a doxygen header
         *
         * @param string $line The current line of the document
         *
@@ -118,7 +135,7 @@ HELP;
                $space = substr($line, 0, $length);
 
                $block = $space . "/**\n" .
-                       $space . " * @brief \n" .
+                       $space . " * \n" .
                        $space . " *\n"; /**/
 
 
@@ -130,7 +147,7 @@ HELP;
 
                if ($line != "") {
                        $parameters = explode(",", $line);
-                       foreach ($parameters AS $parameter) {
+                       foreach ($parameters as $parameter) {
                                $parameter = trim($parameter);
                                $splitted = explode("=", $parameter);