mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix comment style
This commit is contained in:
parent
e89a1232b1
commit
5d8896560e
1 changed files with 8 additions and 4 deletions
|
|
@ -17,7 +17,8 @@ function config($key)
|
|||
return Rhymix\Framework\Config::get($key);
|
||||
}
|
||||
|
||||
/** Get the first value of an array.
|
||||
/**
|
||||
* Get the first value of an array.
|
||||
*
|
||||
* @param array $array The input array
|
||||
* @return mixed
|
||||
|
|
@ -27,7 +28,8 @@ function array_first(array $array)
|
|||
return reset($array);
|
||||
}
|
||||
|
||||
/** Get the first key of an array.
|
||||
/**
|
||||
* Get the first key of an array.
|
||||
*
|
||||
* @param array $array The input array
|
||||
* @return mixed
|
||||
|
|
@ -38,7 +40,8 @@ function array_first_key(array $array)
|
|||
return key($array);
|
||||
}
|
||||
|
||||
/** Get the last value of an array.
|
||||
/**
|
||||
* Get the last value of an array.
|
||||
*
|
||||
* @param array $array The input array
|
||||
* @return mixed
|
||||
|
|
@ -48,7 +51,8 @@ function array_last(array $array)
|
|||
return end($array);
|
||||
}
|
||||
|
||||
/** Get the last key of an array.
|
||||
/**
|
||||
* Get the last key of an array.
|
||||
*
|
||||
* @param array $array The input array
|
||||
* @return mixed
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue