From: <var...@us...> - 2019-04-24 15:40:11
|
Revision: 10119 http://sourceforge.net/p/phpwiki/code/10119 Author: vargenau Date: 2019-04-24 15:40:10 +0000 (Wed, 24 Apr 2019) Log Message: ----------- Update @return value comment Modified Paths: -------------- trunk/lib/BlockParser.php Modified: trunk/lib/BlockParser.php =================================================================== --- trunk/lib/BlockParser.php 2019-04-24 15:24:05 UTC (rev 10118) +++ trunk/lib/BlockParser.php 2019-04-24 15:40:10 UTC (rev 10119) @@ -94,7 +94,7 @@ * * @param $text string The text to search. * - * @return object A RegexpSet_match object, or false if no match. + * @return AnchoredRegexpSet_match|bool An AnchoredRegexpSet_match object, or false if no match. */ function match($text) { @@ -127,7 +127,7 @@ * $prevMatch should be a match object obtained by a previous * match upon the same value of $text. * - * @return RegexpSet_match|bool A RegexpSet_match object, or false if no match. + * @return AnchoredRegexpSet_match|bool An AnchoredRegexpSet_match object, or false if no match. */ function nextMatch($text, $prevMatch) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |