ILIAS  release_8 Revision v8.24
MultiplierStrategy.php
Go to the documentation of this file.
1<?php
2
19
21
26{
27 protected float $multiplier;
28
29 public function __construct(float $multiplier)
30 {
31 $this->multiplier = $multiplier;
32 }
33
34 public function increment(int $duration_in_ms) : int
35 {
36 return ($duration_in_ms * $this->multiplier);
37 }
38}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...