ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.InternalRepoService.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\Blog;
22 
23 //use ILIAS\Portfolio\Access\AccessSessionRepository;
24 
29 {
31  protected \ilDBInterface $db;
32 
33  public function __construct(InternalDataService $data, \ilDBInterface $db)
34  {
35  $this->data = $data;
36  $this->db = $db;
37  }
38 
39  /*
40  public function ...() : ...\RepoService
41  {
42  return new ...\RepoService(
43  $this->data,
44  $this->db
45  );
46  }*/
47 
48  /*public function accessSession() : AccessSessionRepository
49  {
50  return new AccessSessionRepository();
51  }*/
52 }
__construct(InternalDataService $data, \ilDBInterface $db)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...