9 lines
236 B
PHP
9 lines
236 B
PHP
|
<?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: ...
|
||
|
}
|
||
|
}
|