ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.InternalRepoService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Block;
22 
24 
30 {
32  protected \ilDBInterface $db;
33 
34  public function __construct(InternalDataService $data, \ilDBInterface $db)
35  {
36  $this->data = $data;
37  $this->db = $db;
38  }
39 
40  /*
41  public function ...() : ...\RepoService
42  {
43  return new ...\RepoService(
44  $this->data,
45  $this->db
46  );
47  }*/
48 
50  {
51  return new BlockSessionRepository();
52  }
53 }
Stores repository clipboard data.
__construct(InternalDataService $data, \ilDBInterface $db)