CatchRepository.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @filename CatchRepository.php
  5. * @createdAt 2020/6/21
  6. * @project https://github.com/yanwenwu/catch-admin
  7. * @document http://doc.catchadmin.com
  8. * @author JaguarJack <njphper@gmail.com>
  9. * @copyright By CatchAdmin
  10. * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
  11. */
  12. namespace catcher\base;
  13. /**
  14. * @method getList(array $data = [])
  15. * @method storeBy(array $data)
  16. * @method updateBy(int $id, array $data)
  17. * @method findBy(int $id, array $column = ['*'])
  18. * @method deleteBy(int $id)
  19. * @method disOrEnable(int $id)
  20. * @method startTrans()
  21. * @method rollback()
  22. * @method commit()
  23. * @method transaction(\Closure $callback)
  24. * @method raw($sql)
  25. */
  26. abstract class CatchRepository
  27. {
  28. /**
  29. * 模型映射方法
  30. *
  31. * @time 2019年05月26日
  32. * @email wuyanwen@baijiayun.com
  33. * @param $name
  34. * @param $arguments
  35. * @return mixed
  36. * @throws \Exception
  37. */
  38. public function __call($name, $arguments)
  39. {
  40. // TODO: Implement __call() method.
  41. if (method_exists($this, 'model')) {
  42. return call_user_func_array([$this->model(), $name], $arguments);//$this->model()->$name(...$arguments);
  43. }
  44. throw new \Exception(sprintf('Method %s Not Found~', $name));
  45. }
  46. }