692c2e0aeb
All free functions are now in functions.php
8 lines
142 B
PHP
8 lines
142 B
PHP
<?php
|
|
class Success extends Result {
|
|
public function __construct($message) {
|
|
parent::__construct('success', $message);
|
|
}
|
|
}
|
|
?>
|