Equal.php 284 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: shenyang
  5. * Date: 2018/10/18
  6. * Time: 上午9:44
  7. */
  8. namespace app\common\helpers\FormParam;
  9. class Equal extends BaseFormParamType
  10. {
  11. public function format($key,$value)
  12. {
  13. return $this->builder->where($key,$value);
  14. }
  15. }