mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-05-04 01:09:58 -05:00
fix: add type hints to achievements
This commit is contained in:
@@ -17,13 +17,17 @@ use Assada\Achievements\Achievement;
|
||||
|
||||
class UserMadeFirstPost extends Achievement
|
||||
{
|
||||
/*
|
||||
* The achievement name
|
||||
/**
|
||||
* The achievement name.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $name = 'FirstPost';
|
||||
|
||||
/*
|
||||
* A small description for the achievement
|
||||
/**
|
||||
* A small description for the achievement.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $description = 'Congratulations! You have made your first post!';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user