TopicGroupRepository.php 290 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019-06-10
  6. * Time: 17:07
  7. */
  8. namespace App\Repositories;
  9. use App\Models\TopicGroup;
  10. class TopicGroupRepository {
  11. public function __construct(TopicGroup $topicGroup) {
  12. $this->topicGroup = $topicGroup;
  13. }
  14. }