ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
SettingsFactory.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\Survey\Settings;
22 
29 {
30  public function __construct()
31  {
32  }
33 
34  public function accessSettings(
35  int $start_date,
36  int $end_date,
37  bool $access_by_codes
38  ): AccessSettings {
39  return new AccessSettings(
40  $start_date,
41  $end_date,
42  $access_by_codes
43  );
44  }
45 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
accessSettings(int $start_date, int $end_date, bool $access_by_codes)