diff --git a/app/Console/Commands/dumpFleets.php b/app/Console/Commands/dumpFleets.php index c44653788..5ee32d4d4 100644 --- a/app/Console/Commands/dumpFleets.php +++ b/app/Console/Commands/dumpFleets.php @@ -7,7 +7,7 @@ use Illuminate\Console\Command; use DB; use Carbon\Carbon; -use App\Models\ScheduleJob; +use App\Models\ScheduledTask\ScheduleJob; class DumpFleets extends Command { diff --git a/app/Console/Commands/getCorps.php b/app/Console/Commands/getCorps.php index 5c5a1a7ca..6549b300d 100644 --- a/app/Console/Commands/getCorps.php +++ b/app/Console/Commands/getCorps.php @@ -7,8 +7,8 @@ use DB; use Carbon\Carbon; use Commands\Library\CommandHelper; -use App\Models\AllianceCorp; -use App\Models\ScheduleJob; +use App\Models\Corporation\AllianceCorp; +use App\Models\ScheduledTask\ScheduleJob; use Seat\Eseye\Cache\NullCache; use Seat\Eseye\Configuration; diff --git a/app/Console/Commands/getLogisticContracts.php b/app/Console/Commands/getLogisticContracts.php index b8bd4cf20..c1c7937a1 100644 --- a/app/Console/Commands/getLogisticContracts.php +++ b/app/Console/Commands/getLogisticContracts.php @@ -8,7 +8,7 @@ use Carbon\Carbon; use Commands\Library\Helper; use App\Models\Logistics\Contract; -use App\Models\ScheduleJob; +use App\Models\ScheduledTask\ScheduleJob; use Seat\Eseye\Cache\NullCache; use Seat\Eseye\Configuration; diff --git a/app/Console/Commands/sendmail.php b/app/Console/Commands/sendmail.php index af6071de0..9c178bf43 100644 --- a/app/Console/Commands/sendmail.php +++ b/app/Console/Commands/sendmail.php @@ -7,9 +7,9 @@ use Carbon\Carbon; use DB; use Commands\Library\CommandHelper; -use App\Library\Esi; -use App\Library\Mail; -use App\Models\ScheduleJob; +use App\Library\Esi\EsiScope; +use App\Library\Esi\EsiToken; +use App\Models\ScheduledTask\ScheduleJob; use Seat\Eseye\Cache\NullCache; use Seat\Eseye\Configuration;