Files
UNIT3D-Community-Edition/app/Achievements/UserMade900Posts.php
T
HDVinnie 80c842e39c chore: update license block
- make styleci happy
2020-02-12 14:49:18 -05:00

36 lines
876 B
PHP

<?php
/**
* NOTICE OF LICENSE.
*
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D Community Edition
*
* @author HDVinnie <hdinnovations@protonmail.com>
*
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
*/
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserMade900Posts extends Achievement
{
/*
* The achievement name
*/
public $name = '900Posts';
/*
* A small description for the achievement
*/
public $description = 'Wow! You have already made 900 posts!';
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 900;
}