ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
StaticStrategy.php
Go to the documentation of this file.
1 <?php
2 
19 
21 
26 {
27  protected int $increment_in_ms;
28 
29  public function __construct(int $increment_in_ms)
30  {
31  $this->increment_in_ms = $increment_in_ms;
32  }
33 
34  public function increment(int $duration_in_ms) : int
35  {
36  return ($duration_in_ms + $this->increment_in_ms);
37  }
38 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...