ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ToastServices.php
Go to the documentation of this file.
1 <?php
18 declare(strict_types=1);
19 
21 
25 
27 {
29 
30  public function __construct(private UIServices $ui)
31  {
32  $this->toast_factory = new ToastFactory(new StandardToastRendererFactory($this->ui));
33  }
34 
35  public function factory(): ToastFactory
36  {
37  return $this->toast_factory;
38  }
39 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides fluid interface to RBAC services.
Definition: UIServices.php:24