From: <var...@us...> - 2014-06-11 16:21:09
|
Revision: 8890 http://sourceforge.net/p/phpwiki/code/8890 Author: vargenau Date: 2014-06-11 16:21:02 +0000 (Wed, 11 Jun 2014) Log Message: ----------- Update PHP Doc Modified Paths: -------------- trunk/lib/plugin/FoafViewer.php trunk/lib/plugin/RateIt.php Modified: trunk/lib/plugin/FoafViewer.php =================================================================== --- trunk/lib/plugin/FoafViewer.php 2014-06-11 16:20:15 UTC (rev 8889) +++ trunk/lib/plugin/FoafViewer.php 2014-06-11 16:21:02 UTC (rev 8890) @@ -188,8 +188,8 @@ /** * Renders array elements as HTML. May be used recursively. * - * @param $array Source array - * @param $index Element Index to use. + * @param array $array Source array + * @param int $index Element Index to use. * @param null $dc * @return \RawXml * @todo Make sure it can look more than 1 layer deep Modified: trunk/lib/plugin/RateIt.php =================================================================== --- trunk/lib/plugin/RateIt.php 2014-06-11 16:20:15 UTC (rev 8889) +++ trunk/lib/plugin/RateIt.php 2014-06-11 16:21:02 UTC (rev 8890) @@ -309,13 +309,13 @@ * * This needs to be put in the <body> section of the page. * - * @param $pagename Name of the page to rate - * @param $version Version of the page to rate (may be "" for current) - * @param $imgPrefix Prefix of the names of the images that display the rating + * @param string $pagename Name of the page to rate + * @param int $version Version of the page to rate (may be "" for current) + * @param string $imgPrefix Prefix of the names of the images that display the rating * You can have two widgets for the same page displayed at * once iff the imgPrefix-s are different. - * @param $dimension Id of the dimension to rate - * @param $small Makes a smaller ratings widget if non-false + * @param int $dimension Id of the dimension to rate + * @param bool $small Makes a smaller ratings widget if non-false * * Limitations: Currently this can only print the current users ratings. * And only the widget, but no value (for buddies) also. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |