mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix api doc errors in basics.php
This commit is contained in:
parent
15f63e9c81
commit
fe2003888b
1 changed files with 5 additions and 7 deletions
|
@ -125,7 +125,7 @@ if (!function_exists('sortByKey')) {
|
|||
/**
|
||||
* Sorts given $array by key $sortBy.
|
||||
*
|
||||
* @param array $array Array to sort
|
||||
* @param array &$array Array to sort
|
||||
* @param string $sortBy Sort by this key
|
||||
* @param string $order Sort order asc/desc (ascending or descending).
|
||||
* @param integer $type Type of sorting to perform
|
||||
|
@ -235,10 +235,10 @@ if (!function_exists('pr')) {
|
|||
* In terminals this will act the same as using print_r() directly, when not run on cli
|
||||
* print_r() will wrap <PRE> tags around the output of given array. Similar to debug().
|
||||
*
|
||||
* @see debug()
|
||||
* @param mixed $var Variable to print out
|
||||
* @return void
|
||||
* @link http://book.cakephp.org/2.0/en/core-libraries/global-constants-and-functions.html#pr
|
||||
* @see debug()
|
||||
*/
|
||||
function pr($var) {
|
||||
if (Configure::read('debug') > 0) {
|
||||
|
@ -254,10 +254,8 @@ if (!function_exists('am')) {
|
|||
/**
|
||||
* Merge a group of arrays
|
||||
*
|
||||
* @param array First array
|
||||
* @param array Second array
|
||||
* @param array Third array
|
||||
* @param array Etc...
|
||||
* Accepts variable arguments. Each argument will be converted into an array and then merged.
|
||||
*
|
||||
* @return array All array parameters merged into one
|
||||
* @link http://book.cakephp.org/2.0/en/core-libraries/global-constants-and-functions.html#am
|
||||
*/
|
||||
|
@ -840,7 +838,7 @@ if (!function_exists('convertSlash')) {
|
|||
/**
|
||||
* Convert forward slashes to underscores and removes first and last underscores in a string
|
||||
*
|
||||
* @param string String to convert
|
||||
* @param string $string String to convert
|
||||
* @return string with underscore remove from start and end of string
|
||||
* @link http://book.cakephp.org/2.0/en/core-libraries/global-constants-and-functions.html#convertSlash
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue