From 6c1ef346aabe8a2040028a46771f091f2e38c0fe Mon Sep 17 00:00:00 2001
From: Alexander Makarov <sam@rmcreative.ru>
Date: Mon, 26 Aug 2013 03:21:37 +0400
Subject: [PATCH] fixed typos in ArrayHelperBase phpdoc

---
 framework/yii/helpers/ArrayHelperBase.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/framework/yii/helpers/ArrayHelperBase.php b/framework/yii/helpers/ArrayHelperBase.php
index aa12700..2492246 100644
--- a/framework/yii/helpers/ArrayHelperBase.php
+++ b/framework/yii/helpers/ArrayHelperBase.php
@@ -209,7 +209,7 @@ class ArrayHelperBase
 	 * // )
 	 *
 	 * // using anonymous function
-	 * $result = ArrayHelper::index($array, function(element) {
+	 * $result = ArrayHelper::index($array, function ($element) {
 	 *     return $element['id'];
 	 * });
 	 * ~~~
@@ -243,7 +243,7 @@ class ArrayHelperBase
 	 * // the result is: array( '123', '345')
 	 *
 	 * // using anonymous function
-	 * $result = ArrayHelper::getColumn($array, function(element) {
+	 * $result = ArrayHelper::getColumn($array, function ($element) {
 	 *     return $element['id'];
 	 * });
 	 * ~~~
--
libgit2 0.27.1