diff --git a/src/UI/Component/Toast/Container.php b/src/UI/Component/Toast/Container.php index 9076cdcc34e3..c518fd4af5ae 100644 --- a/src/UI/Component/Toast/Container.php +++ b/src/UI/Component/Toast/Container.php @@ -1,7 +1,5 @@ toasts = []; return $clone; } + + /** + * Create a copy of this container with a vanish time in miliseconds. + * The vanish time defines the time after which the toasts vanish. + */ + public function withVanishTime(int $vanishTime): Container + { + throw new NotImplementedException(); + } + + public function getVanishTime(): int + { + throw new NotImplementedException(); + } + + /** + * Create a copy of this container with a delay time in miliseconds. + * The delay time defines the time when the toasts are shown after a page refresh or an asyncronous update. + */ + public function withDelayTime(int $delayTime): Container + { + throw new NotImplementedException(); + } + + public function getDelayTime(): int + { + throw new NotImplementedException(); + } }