ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Prompt.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26interface Prompt extends Slate
27{
31 public function withUpdatedStatusCounter(int $count): Prompt;
32
36 public function withUpdatedNoveltyCounter(int $count): Prompt;
37}
Prompts are notifications from the system to the user.
Definition: Prompt.php:27
withUpdatedStatusCounter(int $count)
Set the Prompt's Status Counter to $count.
withUpdatedNoveltyCounter(int $count)
Set the Prompt's Novelty Counter to $count.