| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | abstract class AbstractCommand extends Command |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The NFL game handler. |
||
| 12 | * |
||
| 13 | * @var \NFLScores\Models\NFL |
||
| 14 | */ |
||
| 15 | protected $NFL; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Injects the necessary dependencies. |
||
| 19 | * |
||
| 20 | * @param \NFLScores\Models\NFL $NFL |
||
| 21 | */ |
||
| 22 | 27 | public function __construct(NFL $NFL) |
|
| 29 |