From 131c3d6ee2fb1cece04aa35446f1a49efd9a9279 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Mon, 12 Dec 2016 15:40:10 +0000 Subject: [PATCH] DomCI : Update PHPDoc git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3285 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- markdown.php | 14 +++++++------- outputxml.php | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/markdown.php b/markdown.php index a6393f4..daf80b2 100644 --- a/markdown.php +++ b/markdown.php @@ -125,7 +125,7 @@ class markdown /** Return HTML code corresponding to the code block * @param array $text The Markdown text to translate split by \n * @param integer $depth The depth of current bloc (in number of space) - * @param integer $pos The start line number of the bloc + * @param integer &$pos The start line number of the bloc */ private function typeCode ($text, $depth, &$pos) { @@ -151,7 +151,7 @@ class markdown /** Return HTML code corresponding to the OL block * @param array $text The Markdown text to translate split by \n * @param integer $depth The depth of current bloc (in number of space) - * @param integer $pos The start line number of the bloc + * @param integer &$pos The start line number of the bloc */ private function typeOL ($text, $depth, &$pos) { @@ -164,7 +164,7 @@ class markdown /** Return HTML code corresponding to the UL block * @param array $text The Markdown text to translate split by \n * @param integer $depth The depth of current bloc (in number of space) - * @param integer $pos The start line number of the bloc + * @param integer &$pos The start line number of the bloc */ private function typeUL ($text, $depth, &$pos) { @@ -177,7 +177,7 @@ class markdown /** Return the HTML code corresponding to the OL/UL block * @param array $text The Markdown text to translate split by \n * @param integer $depth The depth of current bloc (in number of space) - * @param integer $pos The start line number of the bloc + * @param integer &$pos The start line number of the bloc * @param string $type The block type : "ul" or "ol" */ private function typeOLUL ($text, $depth, &$pos, $type) @@ -248,7 +248,7 @@ class markdown * empty line, and return an empty string * @param string $text The Markdown text to translate split by \n * @param integer $depth The depth of the current bloc (in number of space) - * @param integer $pos The start line number of the bloc + * @param integer &$pos The start line number of the bloc */ private function typeNONE ($text, $depth, &$pos) { @@ -260,7 +260,7 @@ class markdown /** Return HTML code corresponding to the P block * @param array $text The Markdown text to translate split by \n * @param integer $depth The depth of current bloc (in number of space) - * @param integer $pos The start line number of the bloc + * @param integer &$pos The start line number of the bloc */ private function typeP ($text, $depth, &$pos) { @@ -297,7 +297,7 @@ class markdown /** Detect the type of the text and call the appropriate function * * @param array $text The Markdown text to translate split by \n * @param integer $depth The depth of current bloc (in number of space) - * @param integer $pos The start line number of the bloc + * @param integer &$pos The start line number of the bloc * @return the HTML code */ private function detectBlock ($text, $depth, &$pos) diff --git a/outputxml.php b/outputxml.php index d5d8691..9a4f7cc 100644 --- a/outputxml.php +++ b/outputxml.php @@ -30,7 +30,7 @@ class outputxml extends output /** function defination to convert array to xml @param mixed $data The data to be converted - @param string $xml The actual state of the XML file */ + @param string &$xml The actual state of the XML file */ private function array_to_xml ($data, &$xml) { foreach($data as $key => $value)