X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fhtmlform%2FHTMLCheckMatrix.php;h=606523b6ad4121d284974569f9e7a812e709bd94;hb=79d908ef74ba0d222515cdce06d4ba4e70580a79;hp=2fc170c83e7bb84e523f52b0ee663bb4189aebd2;hpb=55605dfbeea865cacb2299271ddec4716799061d;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/htmlform/HTMLCheckMatrix.php b/includes/htmlform/HTMLCheckMatrix.php index 2fc170c83e..606523b6ad 100644 --- a/includes/htmlform/HTMLCheckMatrix.php +++ b/includes/htmlform/HTMLCheckMatrix.php @@ -75,9 +75,9 @@ class HTMLCheckMatrix extends HTMLFormField implements HTMLNestedFilterable { * mParams['rows'] is an array with row labels as keys and row tags as values. * mParams['columns'] is an array with column labels as keys and column tags as values. * - * @param array $value of the options that should be checked + * @param array $value Array of the options that should be checked * - * @return String + * @return string */ function getInputHTML( $value ) { $html = ''; @@ -159,9 +159,9 @@ class HTMLCheckMatrix extends HTMLFormField implements HTMLNestedFilterable { * line above the options in the case of a checkbox matrix, i.e. it's always * a "vertical-label". * - * @param string $value the value to set the input to + * @param string $value The value to set the input to * - * @return String complete HTML table row + * @return string Complete HTML table row */ function getTableRow( $value ) { list( $errors, $errorClass ) = $this->getErrorsAndErrorClass( $value ); @@ -187,9 +187,9 @@ class HTMLCheckMatrix extends HTMLFormField implements HTMLNestedFilterable { } /** - * @param $request WebRequest + * @param WebRequest $request * - * @return Array + * @return array */ function loadDataFromRequest( $request ) { if ( $this->mParent->getMethod() == 'post' ) {