ILIAS  release_8 Revision v8.24
BackgroundTaskServices.php
Go to the documentation of this file.
1<?php
2
19namespace ILIAS\BackgroundTasks;
20
26
33{
35
37 {
38 $this->container = $container;
39 }
40
41 public function taskFactory(): TaskFactory
42 {
43 return $this->container['bt.task_factory'];
44 }
45
46 public function persistence(): Persistence
47 {
48 return $this->container['bt.persistence'];
49 }
50
51 public function taskManager(): TaskManager
52 {
53 return $this->container['bt.task_manager'];
54 }
55
56 public function injector(): Injector
57 {
58 return $this->container['bt.injector'];
59 }
60}
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:32
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...