Docblock fixes

This commit is contained in:
Rouslan Placella 2012-06-06 13:17:42 +01:00
parent 796012fcc5
commit a3d7a055ee
3 changed files with 15 additions and 5 deletions

View File

@ -244,9 +244,9 @@ class PMA_Footer
}
/**
*
* Disables the rendering of the footer
*
* @return
* @return void
*/
public function disable()
{

View File

@ -101,6 +101,9 @@ class PMA_Header
* Whether the HTTP headers (and possibly some HTML)
* have already been sent to the browser
*
* FIXME: Shouldn't be static or public, but first
* need to remove references to it from the code base
*
* @access public
* @static
* @var bool
@ -178,9 +181,9 @@ class PMA_Header
}
/**
*
* Disables the rendering of the header
*
* @return
* @return void
*/
public function disable()
{
@ -435,6 +438,12 @@ class PMA_Header
return $retval;
}
/**
* If the page is missing the title, this function
* will set it to something reasonable
*
* @return string
*/
private function _getPageTitle()
{
if (empty($this->_title)) {

View File

@ -120,7 +120,8 @@ class PMA_Response
}
/**
* FIXME
* Set the status of an ajax response,
* whether it is a success or an error
*
* @return void
*/