Fix comment style

This commit is contained in:
Kijin Sung 2016-02-04 17:56:04 +09:00
parent e89a1232b1
commit 5d8896560e

View file

@ -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