ILIAS  trunk Revision v11.0_alpha-1811-gd2d5443e411
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SettingsFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
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 }
accessSettings(int $start_date, int $end_date, bool $access_by_codes)