ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilCronServicesImpl.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  private \ILIAS\DI\Container $dic;
24 
25  public function __construct(\ILIAS\DI\Container $dic)
26  {
27  $this->dic = $dic;
28  }
29 
30  public function manager(): ilCronManager
31  {
32  return $this->dic['cron.manager'];
33  }
34 
35  public function repository(): ilCronJobRepository
36  {
37  return $this->dic['cron.repository'];
38  }
39 }
Class ChatMainBarProvider .
__construct(\ILIAS\DI\Container $dic)
Class HTTPServicesTest.