Merge branch 'develop-olympus' into develop

* develop-olympus:
  [ticket/11227] @return void -> @return null in develop-olympus.
This commit is contained in:
Andreas Fischer 2012-11-29 23:17:58 +01:00
commit 5d78346453
14 changed files with 18 additions and 18 deletions

View file

@ -111,7 +111,7 @@ function my_var_export($var)
* Download a file to the develop/ dir * Download a file to the develop/ dir
* *
* @param string $url URL of the file to download * @param string $url URL of the file to download
* @return void * @return null
*/ */
function download($url) function download($url)
{ {

View file

@ -199,7 +199,7 @@ function my_var_export($var)
* Download a file to the develop/ dir * Download a file to the develop/ dir
* *
* @param string $url URL of the file to download * @param string $url URL of the file to download
* @return void * @return null
*/ */
function download($url) function download($url)
{ {

View file

@ -481,7 +481,7 @@ function my_var_export($var)
* Download a file to the develop/ dir * Download a file to the develop/ dir
* *
* @param string $url URL of the file to download * @param string $url URL of the file to download
* @return void * @return null
*/ */
function download($url) function download($url)
{ {

View file

@ -222,7 +222,7 @@ die("\n\nALL TESTS PASSED SUCCESSFULLY\n");
* Download a file to the develop/ dir * Download a file to the develop/ dir
* *
* @param string $url URL of the file to download * @param string $url URL of the file to download
* @return void * @return null
*/ */
function download($url) function download($url)
{ {

View file

@ -193,7 +193,7 @@ $user_id = 2;
$auth->acl_clear_prefetch($user_id); $auth->acl_clear_prefetch($user_id);
</pre></div> </pre></div>
<p>This method returns void.</p> <p>This method returns null.</p>
<a name="acl_get_list"></a><h3>2.viii. acl_get_list</h3> <a name="acl_get_list"></a><h3>2.viii. acl_get_list</h3>

View file

@ -26,7 +26,7 @@ class phpbb_cache_driver_apc extends phpbb_cache_driver_memory
/** /**
* Purge cache data * Purge cache data
* *
* @return void * @return null
*/ */
function purge() function purge()
{ {

View file

@ -30,7 +30,7 @@ class phpbb_cache_driver_eaccelerator extends phpbb_cache_driver_memory
/** /**
* Purge cache data * Purge cache data
* *
* @return void * @return null
*/ */
function purge() function purge()
{ {
@ -47,7 +47,7 @@ class phpbb_cache_driver_eaccelerator extends phpbb_cache_driver_memory
/** /**
* Perform cache garbage collection * Perform cache garbage collection
* *
* @return void * @return null
*/ */
function tidy() function tidy()
{ {

View file

@ -64,7 +64,7 @@ class phpbb_cache_driver_memcache extends phpbb_cache_driver_memory
/** /**
* Unload the cache resources * Unload the cache resources
* *
* @return void * @return null
*/ */
function unload() function unload()
{ {
@ -76,7 +76,7 @@ class phpbb_cache_driver_memcache extends phpbb_cache_driver_memory
/** /**
* Purge cache data * Purge cache data
* *
* @return void * @return null
*/ */
function purge() function purge()
{ {

View file

@ -74,7 +74,7 @@ class phpbb_cache_driver_redis extends phpbb_cache_driver_memory
/** /**
* Unload the cache resources * Unload the cache resources
* *
* @return void * @return null
*/ */
function unload() function unload()
{ {
@ -86,7 +86,7 @@ class phpbb_cache_driver_redis extends phpbb_cache_driver_memory
/** /**
* Purge cache data * Purge cache data
* *
* @return void * @return null
*/ */
function purge() function purge()
{ {

View file

@ -26,7 +26,7 @@ class phpbb_cache_driver_wincache extends phpbb_cache_driver_memory
/** /**
* Purge cache data * Purge cache data
* *
* @return void * @return null
*/ */
function purge() function purge()
{ {

View file

@ -41,7 +41,7 @@ class phpbb_cache_driver_xcache extends phpbb_cache_driver_memory
/** /**
* Purge cache data * Purge cache data
* *
* @return void * @return null
*/ */
function purge() function purge()
{ {

View file

@ -2856,7 +2856,7 @@ function meta_refresh($time, $url, $disable_cd_check = false)
* *
* @param int $code HTTP status code * @param int $code HTTP status code
* @param string $message Message for the status code * @param string $message Message for the status code
* @return void * @return null
*/ */
function send_status_line($code, $message) function send_status_line($code, $message)
{ {
@ -4795,7 +4795,7 @@ function phpbb_get_plural_form($rule, $number)
* *
* @param array $param Parameter array, see $param_defaults array. * @param array $param Parameter array, see $param_defaults array.
* *
* @return void * @return null
*/ */
function phpbb_http_login($param) function phpbb_http_login($param)
{ {

View file

@ -3308,7 +3308,7 @@ function obtain_latest_version_info($force_update = false, $warn_fail = false, $
* @param int $flag The binary flag which is OR-ed with the current column value * @param int $flag The binary flag which is OR-ed with the current column value
* @param string $sql_more This string is attached to the sql query generated to update the table. * @param string $sql_more This string is attached to the sql query generated to update the table.
* *
* @return void * @return null
*/ */
function enable_bitfield_column_flag($table_name, $column_name, $flag, $sql_more = '') function enable_bitfield_column_flag($table_name, $column_name, $flag, $sql_more = '')
{ {

View file

@ -70,7 +70,7 @@ class phpbb_questionnaire_data_collector
/** /**
* Collect info into the data property. * Collect info into the data property.
* *
* @return void * @return null
*/ */
function collect() function collect()
{ {