From: Alexandre Emsenhuber Date: Fri, 18 Jun 2010 21:04:49 +0000 (+0000) Subject: Fixed some doxygen warnings X-Git-Tag: 1.31.0-rc.0~36469 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/%7B%7B%20url_for%28%27admin_users%27%29%20%7D%7D?a=commitdiff_plain;h=f836571bd1382bacf7bb91d383d55acf132fed42;p=lhc%2Fweb%2Fwiklou.git Fixed some doxygen warnings --- diff --git a/maintenance/tests/MediaWikiParserTest.php b/maintenance/tests/MediaWikiParserTest.php index 651637c870..4d027b77b1 100644 --- a/maintenance/tests/MediaWikiParserTest.php +++ b/maintenance/tests/MediaWikiParserTest.php @@ -116,6 +116,7 @@ class MediaWikiParserTestSuite extends PHPUnit_Framework_TestSuite { private $uploadDir; private $keepUploads; + /** * Remove the dummy uploads directory */ @@ -158,7 +159,8 @@ class MediaWikiParserTestSuite extends PHPUnit_Framework_TestSuite { /** * Delete the specified files, if they exist. - * @param array $files full paths to files to delete. + * + * @param $files Array: full paths to files to delete. */ private static function deleteFiles( $files ) { foreach ( $files as $file ) { @@ -167,9 +169,11 @@ class MediaWikiParserTestSuite extends PHPUnit_Framework_TestSuite { } } } + /** * Delete the specified directories, if they exist. Must be empty. - * @param array $dirs full paths to directories to delete. + * + * @param $dirs Array: full paths to directories to delete. */ private static function deleteDirs( $dirs ) { foreach ( $dirs as $dir ) { @@ -182,7 +186,8 @@ class MediaWikiParserTestSuite extends PHPUnit_Framework_TestSuite { /** * Create a dummy uploads directory which will contain a couple * of files in order to pass existence tests. - * @return string The directory + * + * @return String: the directory */ private function setupUploadDir() { global $IP; diff --git a/maintenance/tests/UploadFromUrlTestSuite.php b/maintenance/tests/UploadFromUrlTestSuite.php index e9ddd9625b..60dd67c339 100644 --- a/maintenance/tests/UploadFromUrlTestSuite.php +++ b/maintenance/tests/UploadFromUrlTestSuite.php @@ -67,6 +67,7 @@ class UploadFromUrlTestSuite extends PHPUnit_Framework_TestSuite private $uploadDir; private $keepUploads; + /** * Remove the dummy uploads directory */ @@ -110,7 +111,8 @@ class UploadFromUrlTestSuite extends PHPUnit_Framework_TestSuite /** * Delete the specified files, if they exist. - * @param array $files full paths to files to delete. + * + * @param $files Array: full paths to files to delete. */ private static function deleteFiles( $files ) { foreach ( $files as $file ) { @@ -119,9 +121,11 @@ class UploadFromUrlTestSuite extends PHPUnit_Framework_TestSuite } } } + /** * Delete the specified directories, if they exist. Must be empty. - * @param array $dirs full paths to directories to delete. + * + * @param $dirs Array: full paths to directories to delete. */ private static function deleteDirs( $dirs ) { foreach ( $dirs as $dir ) { @@ -134,7 +138,8 @@ class UploadFromUrlTestSuite extends PHPUnit_Framework_TestSuite /** * Create a dummy uploads directory which will contain a couple * of files in order to pass existence tests. - * @return string The directory + * + * @return String: the directory */ private function setupUploadDir() { global $IP;