From 5d8896560e4f7ebaccf2ece3718a772c23dec379 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Thu, 4 Feb 2016 17:56:04 +0900 Subject: [PATCH] Fix comment style --- common/functions.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/common/functions.php b/common/functions.php index d10638ef7..a244a437c 100644 --- a/common/functions.php +++ b/common/functions.php @@ -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