PostQueryForm.php 376 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace common\forms;
  3. use common\behaviors\TaggableQueryBehavior;
  4. /**
  5. * Class PostQueryForm
  6. * @package common\forms
  7. * @author jianyan74 <751393839@qq.com>
  8. */
  9. class PostQueryForm extends \yii\db\ActiveQuery
  10. {
  11. /**
  12. * @return array
  13. */
  14. public function behaviors()
  15. {
  16. return [
  17. TaggableQueryBehavior::class,
  18. ];
  19. }
  20. }
粤ICP备19079148号