28 lines
634 B
PHP
28 lines
634 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: rocky
|
|
* Date: 2022-02-26
|
|
* Time: 00:44
|
|
*/
|
|
|
|
use addons\webman\model\Lottery;
|
|
use addons\webman\model\Notice;
|
|
|
|
return [
|
|
'title' => [
|
|
Notice::TYPE_WITHDRAW =>
|
|
[
|
|
2 => 'Successfully scored',
|
|
3 => 'Scoring failed'
|
|
]
|
|
],
|
|
'content' => [
|
|
Notice::TYPE_WITHDRAW =>
|
|
[
|
|
2 => 'This application has been successfully processed, with a total of {point} points. Please check.',
|
|
3 => '{point} points have been returned for this application, please check.'
|
|
]
|
|
],
|
|
];
|