SearchInterface.php 250 B

123456789101112131415
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2020-02-02 19:57
  7. */
  8. namespace backend\models\search;
  9. interface SearchInterface
  10. {
  11. public function search(array $params = [], array $options = []);
  12. }