ActiveRecordService.php 233 B

1234567891011121314151617
  1. <?php
  2. namespace common\services;
  3. use common\util\ActiveRecordHelper;
  4. class ActiveRecordService
  5. {
  6. use ActiveRecordHelper;
  7. public static function getInstance(): ActiveRecordService
  8. {
  9. return new self();
  10. }
  11. }