Issue #1811226 by Mile23: Add missing type hinting to Contact module docblocks

8.0.x
Jennifer Hodgdon 2015-01-22 12:12:26 -08:00
parent 7dc188d193
commit 7ed8d75d82
2 changed files with 4 additions and 4 deletions

View File

@ -259,9 +259,9 @@ class ContactPersonalTest extends WebTestBase {
/** /**
* Creates a user and then checks contact form access. * Creates a user and then checks contact form access.
* *
* @param integer $response * @param int $response
* The expected response code. * The expected response code.
* @param boolean $contact_value * @param bool $contact_value
* (optional) The value the contact field should be set too. * (optional) The value the contact field should be set too.
*/ */
protected function checkContactAccess($response, $contact_value = NULL) { protected function checkContactAccess($response, $contact_value = NULL) {

View File

@ -333,7 +333,7 @@ class ContactSitewideTest extends WebTestBase {
* @param string $reply * @param string $reply
* The auto-reply text that is sent to a user upon completing the contact * The auto-reply text that is sent to a user upon completing the contact
* form. * form.
* @param boolean $selected * @param bool $selected
* A Boolean indicating whether the form should be selected by default. * A Boolean indicating whether the form should be selected by default.
* @param array $third_party_settings * @param array $third_party_settings
* Array of third party settings to be added to the posted form data. * Array of third party settings to be added to the posted form data.
@ -361,7 +361,7 @@ class ContactSitewideTest extends WebTestBase {
* @param string $reply * @param string $reply
* The auto-reply text that is sent to a user upon completing the contact * The auto-reply text that is sent to a user upon completing the contact
* form. * form.
* @param boolean $selected * @param bool $selected
* A Boolean indicating whether the form should be selected by default. * A Boolean indicating whether the form should be selected by default.
*/ */
function updateContactForm($id, $label, $recipients, $reply, $selected) { function updateContactForm($id, $label, $recipients, $reply, $selected) {