ILIAS  release_8 Revision v8.24
IncrementFactory.php
Go to the documentation of this file.
1<?php declare(strict_types=1);
2
19
24{
25 public function multiplier(float $multiplier) : MultiplierStrategy
26 {
27 return new MultiplierStrategy($multiplier);
28 }
29
30 public function constant(int $increment_in_ms) : StaticStrategy
31 {
32 return new StaticStrategy($increment_in_ms);
33 }
34}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...