fix: add type hints to achievements

This commit is contained in:
Roardom
2023-08-26 09:46:22 +00:00
parent 15b31c777e
commit b27e785c0b
54 changed files with 641 additions and 1100 deletions
+8 -4
View File
@@ -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!';
}