FileHelper.php 389 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5
<?php
/**
 * Filesystem helper class file.
 *
 * @link http://www.yiiframework.com/
Qiang Xue committed
6
 * @copyright Copyright (c) 2008 Yii Software LLC
Qiang Xue committed
7 8 9
 * @license http://www.yiiframework.com/license/
 */

Qiang Xue committed
10
namespace yii\helpers;
Qiang Xue committed
11 12 13 14 15 16 17 18

/**
 * Filesystem helper
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @author Alex Makarov <sam@rmcreative.ru>
 * @since 2.0
 */
19
class FileHelper extends BaseFileHelper
Qiang Xue committed
20
{
Zander Baldwin committed
21
}