ILIAS  trunk Revision v11.0_alpha-1811-gd2d5443e411
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\News;
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  public function dashboard(): DashboardSessionRepository
41  {
42  return new DashboardSessionRepository(
43  );
44  }
45 }
__construct(InternalDataService $data, \ilDBInterface $db)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Repository internal data service.