DomCI : Update PHPDoc

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3285 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2016-12-12 15:40:10 +00:00
parent 2e535af8d5
commit 131c3d6ee2
2 changed files with 8 additions and 8 deletions

View File

@@ -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)

View File

@@ -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)