ILIAS  trunk Revision v11.0_alpha-1811-gd2d5443e411
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
28 class Factory implements D\Factory
29 {
30  protected File\Factory $file_factory;
31 
32  public function __construct(File\Factory $file_factory)
33  {
34  $this->file_factory = $file_factory;
35  }
36 
37  public function file(): File\Factory
38  {
39  return $this->file_factory;
40  }
41 }
__construct(File\Factory $file_factory)
Definition: Factory.php:32
file()
description: purpose: > File dropzones are used to drop files from outside the browser window...
Definition: Factory.php:37