Awards base class and scaffolding #155

This commit is contained in:
Nabeel Shahzad
2018-03-16 23:59:53 -05:00
parent 067fb0f9f0
commit 7dd6a7e7f3
7 changed files with 161 additions and 12 deletions

10
app/Awards/BaseAward.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
namespace App\Awards;
use App\Interfaces\AwardInterface;
class BaseAward implements AwardInterface
{
}