X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FFormOptions.php;h=c91c336762f645330fa0180d9b5297262982441e;hb=c8aa42bbfb93e5c19a49664ccee200b304330f69;hp=079267a246827126f9b1ae61060782a438e1fe05;hpb=12fcee145b754b51aa14fbc47378e9f90358a1a7;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/FormOptions.php b/includes/FormOptions.php index 079267a246..c91c336762 100644 --- a/includes/FormOptions.php +++ b/includes/FormOptions.php @@ -375,6 +375,7 @@ class FormOptions implements ArrayAccess { /* @{ */ /** * Whether the option exists. + * @param string $name * @return bool */ public function offsetExists( $name ) { @@ -383,6 +384,7 @@ class FormOptions implements ArrayAccess { /** * Retrieve an option value. + * @param string $name * @return mixed */ public function offsetGet( $name ) { @@ -391,6 +393,8 @@ class FormOptions implements ArrayAccess { /** * Set an option to given value. + * @param string $name + * @param mixed $value */ public function offsetSet( $name, $value ) { $this->setValue( $name, $value ); @@ -398,6 +402,7 @@ class FormOptions implements ArrayAccess { /** * Delete the option. + * @param string $name */ public function offsetUnset( $name ) { $this->delete( $name );