ArrayHelper.php 386 Bytes
Newer Older
Qiang Xue committed
1 2
<?php
/**
Qiang Xue committed
3
 * @copyright Copyright (c) 2008 Yii Software LLC
Qiang Xue committed
4 5 6 7
 * @link http://www.yiiframework.com/
 * @license http://www.yiiframework.com/license/
 */

Qiang Xue committed
8
namespace yii\helpers;
Qiang Xue committed
9 10

/**
11
 * ArrayHelper provides additional array functionality that you can use in your
12
 * application.
Qiang Xue committed
13 14 15 16
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
17
class ArrayHelper extends BaseArrayHelper
Qiang Xue committed
18
{
Zander Baldwin committed
19
}