This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/core/Flash.php

9 lines
236 B
PHP
Raw Normal View History

2022-01-16 16:12:04 +00:00
<?php
// Provide user feedback by flashing a message on the next request. This is usually combined with a layout template that does this.
class Flash extends Session {
public function add(): void
{
// TODO: ...
}
}