Add the event listener for the awards #155

This commit is contained in:
Nabeel Shahzad
2018-03-17 00:55:39 -05:00
parent 31b9195a6e
commit 26f00ccaae
9 changed files with 127 additions and 53 deletions

View File

@@ -11,4 +11,9 @@ use App\Interfaces\AwardInterface;
class SampleAward extends AwardInterface
{
public $name = 'Sample Award';
public function check(): bool
{
return false;
}
}