ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BackgroundTaskServices.php
Go to the documentation of this file.
1 <?php
2 
20 
26 
33 {
34  public function __construct(protected Container $container)
35  {
36  }
37 
38  public function taskFactory(): TaskFactory
39  {
40  return $this->container['bt.task_factory'];
41  }
42 
43  public function persistence(): Persistence
44  {
45  return $this->container['bt.persistence'];
46  }
47 
48  public function taskManager(): TaskManager
49  {
50  return $this->container['bt.task_manager'];
51  }
52 
53  public function injector(): Injector
54  {
55  return $this->container['bt.injector'];
56  }
57 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$container
Definition: wac.php:36