FileHelper.php 389 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Filesystem helper class file.
  4. *
  5. * @link http://www.yiiframework.com/
  6. * @copyright Copyright (c) 2008 Yii Software LLC
  7. * @license http://www.yiiframework.com/license/
  8. */
  9. namespace yii\helpers;
  10. /**
  11. * Filesystem helper
  12. *
  13. * @author Qiang Xue <[email protected]>
  14. * @author Alex Makarov <[email protected]>
  15. * @since 2.0
  16. */
  17. class FileHelper extends BaseFileHelper
  18. {
  19. }