ErrorHandlerLog.php 472 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace fecshop\models\mysqldb;
  10. use yii\db\ActiveRecord;
  11. /**
  12. * @author Terry Zhao <2358269014@qq.com>
  13. * @since 1.0
  14. */
  15. // use fecshop\models\mysqldb\IpnMessage;
  16. class ErrorHandlerLog extends ActiveRecord
  17. {
  18. public static function tableName()
  19. {
  20. return '{{%error_handler_log}}';
  21. }
  22. }