X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fparser%2FPPFrame.php;h=3f147f01c3657a339d781f7b81e9801a38f619a6;hb=5eac6d131c2a77d04b019d4c60aa02a4f98c7903;hp=79c7c3b30a84a0778a8e1668cb6223c22cbd9659;hpb=b0c56c7050227d5422d3b539b9ddcc44b7bf9e5a;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/parser/PPFrame.php b/includes/parser/PPFrame.php index 79c7c3b30a..3f147f01c3 100644 --- a/includes/parser/PPFrame.php +++ b/includes/parser/PPFrame.php @@ -69,6 +69,7 @@ interface PPFrame { * @param string $sep * @param int $flags * @param string|PPNode $args,... + * @suppress PhanCommentParamWithoutRealParam HHVM bug T228695#5450847 * @return string */ public function implodeWithFlags( $sep, $flags /*, ... */ ); @@ -77,6 +78,7 @@ interface PPFrame { * Implode with no flags specified * @param string $sep * @param string|PPNode $args,... + * @suppress PhanCommentParamWithoutRealParam HHVM bug T228695#5450847 * @return string */ public function implode( $sep /*, ... */ ); @@ -85,20 +87,22 @@ interface PPFrame { * Makes an object that, when expand()ed, will be the same as one obtained * with implode() * @param string $sep - * @param string|PPNode $args,... + * @param string|PPNode ...$args + * @suppress PhanCommentParamWithoutRealParam HHVM bug T228695#5450847 * @return PPNode */ - public function virtualImplode( $sep /*, ... */ ); + public function virtualImplode( $sep /* ...$args */ ); /** * Virtual implode with brackets * @param string $start * @param string $sep * @param string $end - * @param string|PPNode $args,... + * @param string|PPNode ...$args + * @suppress PhanCommentParamWithoutRealParam HHVM bug T228695#5450847 * @return PPNode */ - public function virtualBracketedImplode( $start, $sep, $end /*, ... */ ); + public function virtualBracketedImplode( $start, $sep, $end /* ...$args */ ); /** * Returns true if there are no arguments in this frame