CommentWidget.php 214 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\common\widget;
  3. use yii\base\Widget;
  4. use Yii;
  5. class CommentWidget extends Widget
  6. {
  7. public function init()
  8. {
  9. }
  10. public function run()
  11. {
  12. return $this->render('comment',[]);
  13. }
  14. }