Add test cases for services

This commit is contained in:
Dane Everitt 2018-02-11 17:32:45 -06:00
parent 3ecab82358
commit e2cdb3b4b1
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
5 changed files with 245 additions and 11 deletions

View file

@ -15,19 +15,22 @@ class ScheduleUpdateService
* @var \Illuminate\Database\ConnectionInterface
*/
private $connection;
/**
* @var \Pterodactyl\Contracts\Repository\ScheduleRepositoryInterface
*/
private $repository;
/**
* @var \Pterodactyl\Contracts\Repository\TaskRepositoryInterface
*/
private $taskRepository;
/**
* @var \Pterodactyl\Services\Schedules\Tasks\TaskCreationService
*/
private $taskCreationService;
/**
* @var \Pterodactyl\Contracts\Repository\TaskRepositoryInterface
*/
private $taskRepository;
/**
* ScheduleUpdateService constructor.
*