From 9efb326b5f310298e8a241e96cff781a55734289 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sat, 9 Jan 2021 18:46:18 +0900 Subject: [PATCH] cleanup --- .../Bonds}/ProcessAllianceBond.php | 2 +- .../NotUsed/FetchRentalMoonLedgerJob.php | 143 ------------------ .../NotUsed/FetchRentalMoonObserversJob.php | 97 ------------ .../RentalMoons/UpdateMoonRentalPaidState.php | 41 ----- .../RentalMoons/UpdateRentalMoonPullJob.php | 103 ------------- app/Library/Fleets/FleetHelper.php | 67 -------- app/Library/Market/MarketHelper.php | 74 --------- .../RegionalContractHelper.php | 85 ----------- app/Models/Fleets/AllianceFleet.php | 32 ---- app/Models/Fleets/AllianceFleetMember.php | 31 ---- app/Models/Moon/RentalMoonInvoice.php | 1 + ...fy_alliance_moon_rental_invoices_table.php | 32 ++++ vendor/composer/autoload_classmap.php | 8 +- vendor/composer/autoload_static.php | 8 +- 14 files changed, 46 insertions(+), 678 deletions(-) rename app/Jobs/{ => Commands/Bonds}/ProcessAllianceBond.php (96%) delete mode 100644 app/Jobs/Commands/NotUsed/FetchRentalMoonLedgerJob.php delete mode 100644 app/Jobs/Commands/NotUsed/FetchRentalMoonObserversJob.php delete mode 100644 app/Jobs/Commands/RentalMoons/UpdateRentalMoonPullJob.php delete mode 100644 app/Library/Fleets/FleetHelper.php delete mode 100644 app/Library/Market/MarketHelper.php delete mode 100644 app/Library/RegionalContracts/RegionalContractHelper.php delete mode 100644 app/Models/Fleets/AllianceFleet.php delete mode 100644 app/Models/Fleets/AllianceFleetMember.php create mode 100644 database/migrations/2021_01_09_093511_modify_alliance_moon_rental_invoices_table.php diff --git a/app/Jobs/ProcessAllianceBond.php b/app/Jobs/Commands/Bonds/ProcessAllianceBond.php similarity index 96% rename from app/Jobs/ProcessAllianceBond.php rename to app/Jobs/Commands/Bonds/ProcessAllianceBond.php index bcf247053..a1147a20f 100644 --- a/app/Jobs/ProcessAllianceBond.php +++ b/app/Jobs/Commands/Bonds/ProcessAllianceBond.php @@ -1,6 +1,6 @@ HaveEsiScope($config['primary'], 'esi-industry.read_corporation_mining.v1') || !$esiHelper->HaveEsiScope($config['primary'], 'esi-universe.read_structures.v1')) { - Log::critical('The primary character does not have the necessary scopes for FetchRentalMoonLedgerCommand.'); - return; - } - - //Get the refresh token if scope checks have passed - $refreshToken = $esiHelper->GetRefreshtoken($config['primary']); - - //Get the character data from the lookup table if possible or esi - $character = $lookup->GetCharacterInfo($config['primary']); - - //Get all of the rental moon observers from the database - $observers = RentalMoonObserver::all(); - - //Dump the mining ledger table for rental moons - RentalMoonLedger::truncate(); - - //Foreach observer get the ledger - foreach($observers as $observer) { - //Get the observer name. - $observerInfo = Structure::where([ - 'structure_id' => $observer->observer_id, - ])->first(); - - try { - $ledgers = $esi->invoke('get', '/corporation/{corporation_id}/mining/observers/{observer_id}/', [ - 'corporation_id' => $character->corporation_id, - 'observer_id' => $observer->observer_id, - ]); - } catch(RequestFailedException $e) { - //If an exception has occurred, then log it - Log::critical('FetchRentalMoonLedger command failed to get the mining ledger for observer id: ' . $observer->observer_id); - } - - if($ledgers != null) { - foreach($ledgers as $ledger) { - //Get the ore name from the lookup table - $ore = $lookup->ItemIdToName($ledger->type_id); - - //Get the character name from the lookup helper using the characterId - $charInfo = $lookup->GetCharacterInfo($ledger->character_id); - //Get the corporation information - $corpInfo = $lookup->GetCorporationInfo($charInfo->corporation_id); - - //Get the recorded corporation information - $recordedCorpInfo = $lookup->GetCorporationInfo($ledger->recorded_corporation_id); - - $entries[] = [ - 'corporation_id' => $corpInfo->corporation_id, - 'corporation_name' => $corpInfo->name, - 'character_id' => $ledger->character_id, - 'character_name' => $charInfo->name, - 'observer_id' => $observer->observer_id, - 'observer_name' => $observerInfo->name, - 'type_id' => $ledger->type_id, - 'ore' => $ore, - 'quantity' => $ledger->quantity, - 'recorded_corporation_id' => $ledger->recorded_corporation_id, - 'recorded_corporation_name' => $recordedCorpInfo->name, - 'last_updated' => $ledger->last_updated, - 'created_at' => $ledger->last_updated . ' 23:59:59', - 'updated_at' => $ledger->last_updated . ' 23:59:59', - ]; - } - - //Insert or ignore each of the records saved into the array through the foreach loop - RentalMoonLedger::insertOrIgnore($entries); - - Log::info( - 'FetchRentalMoonLedgerJob inserted up to ' .count($entires) . ' new ledger entries.' - ); - - } - } - } -} diff --git a/app/Jobs/Commands/NotUsed/FetchRentalMoonObserversJob.php b/app/Jobs/Commands/NotUsed/FetchRentalMoonObserversJob.php deleted file mode 100644 index af6639a39..000000000 --- a/app/Jobs/Commands/NotUsed/FetchRentalMoonObserversJob.php +++ /dev/null @@ -1,97 +0,0 @@ -HaveEsiScope($config['primary'], 'esi-industry.read_corporation_mining.v1') || !$esiHelper->HaveEsiScope($config['primary'], 'esi-universe.read_structures.v1')) { - Log::critical('The primary character does not have the necessary scopes for FetchRentalMoonObservers.'); - return; - } - - //Get the refresh token for spatial forces - $refreshToken = $esiHelper->GetRefreshToken($config['primary']); - - //Get the character data from the lookup table if possible or esi - $character = $lookup->GetCharacterInfo($config['primary']); - - //Get the mining observers for spatial forces from esi - try { - $responses = $esi->invoke('get', '/corporation/{corporation_id}/mining/observers/', [ - 'corporation_id' => $character->corporation_id, - ]); - } catch(RequestFailedException $e) { - Log::critical('RentalMoonObservers failed to get the moon observers for Spatial Forces.'); - } - - //Run through the mining observers, and add them to the database as needed - foreach($responses as $observer) { - //Populate the array with the data, so we can do an insert or ignore after the foreach loop is completed. - $obss[] = [ - 'observer_id' => $observer->observer_id, - 'observer_type' => $observer->observer_type, - 'last_updated' => $esi->DecodeDate($observer->last_updated) - ]; - } - - RentalMoonObserver::insertOrIgnore($obss); - } -} diff --git a/app/Jobs/Commands/RentalMoons/UpdateMoonRentalPaidState.php b/app/Jobs/Commands/RentalMoons/UpdateMoonRentalPaidState.php index 66e8751a3..00b9eebeb 100644 --- a/app/Jobs/Commands/RentalMoons/UpdateMoonRentalPaidState.php +++ b/app/Jobs/Commands/RentalMoons/UpdateMoonRentalPaidState.php @@ -107,47 +107,6 @@ class UpdateMoonRentalPaidState implements ShouldQueue 'paid' => 'No', ]); } - - //If the moon hasn't been paid for in two weeks, then remove the renter, - //then send the renter and w4rp leadership a mail. - if($paidUntil->greaterThanOrEqualTo($today->subWeeks(2))) { - //Declare the lookup helper as it will be needed - $lookupHelper = new LookupHelper; - - //Get the character id for Minerva Arbosa and Rock Onzo - $minerva = $lookupHelper->CharacterNameToId('Minerva Arbosa'); - $rock = $lookupHelper->CharacterNameToId('Rock Onzo'); - - //Remove the renter - AllianceMoonRental::where([ - 'region' => $rental->region, - 'system' => $rental->system, - 'planet' => $rental->planet, - 'moon' => $rental->moon, - ])->update([ - 'rental_type' => 'Not Rented', - 'rental_until' => null, - 'rental_contact_id' => 0, - 'rental_contact_type' => null, - 'paid' => 'Not Rented', - 'paid_until' => null, - ]); - - //Send a mail over to the alliance leadership, and the former renter with - //why the moon was removed. - $subject = "W4RP Moon Rental Cancelled"; - - //Dispatch the mail job - ProcessSendEveMailJob::dispatch($body, (int)$rental->rental_contact_id, 'character', $subject, $config['primary'])->onQueue('mail')->delay(Carbon::now()->addSeconds($mailDelay)); - $mailDelay += 30; - if($minerva != null) { - ProcessSendEveMailJob::dispatch($body, (int)$minerva, 'character', $subject, $config['primary'])->onQueue('mail')->delay(Carbon::now()->addSeconds($mailDelay)); - $mailDelay += 30; - } - if($rock != null) { - ProcessSendEveMailJob::dispatch($body, (int)$rock, 'character', $subject, $config['primary'])->onQueue('mail')->delay(Carbon::now()->addSeconds($mailDelay)); - } - } } } } diff --git a/app/Jobs/Commands/RentalMoons/UpdateRentalMoonPullJob.php b/app/Jobs/Commands/RentalMoons/UpdateRentalMoonPullJob.php deleted file mode 100644 index 46082464f..000000000 --- a/app/Jobs/Commands/RentalMoons/UpdateRentalMoonPullJob.php +++ /dev/null @@ -1,103 +0,0 @@ -connection = 'redis'; - } - - /** - * Execute the job. - * - * @return void - */ - public function handle() - { - //Setup the configuration variable for ESI - $config = config('esi'); - //Setup the esi helper variable - $esiHelper = new Esi; - - //Check for the esi scope - if(!$esiHelper->HaveEsiScope($config['primary'], 'esi-industry.read_corporation_mining.v1')) { - //Send a mail to the holding toon to update the esi scopes - return null; - } - - //Is this valid? - AllianceRentalMoon::update([ - 'next_moon_pull' => null, - ]); - - //Reset all table entries to clear out the next moon pull entry - $allMoons = AllianceRentalMoon::all(); - //Cycle through all of the moons, and make the next moon pull null - foreach($allMoons as $moon) { - AllianceRentalMoon::where([ - 'system' => $moon->system, - 'planet' => $moon->planet, - 'moon' => $moon->moon, - ])->update([ - 'next_moon_pull' => null, - ]); - } - - //Get the refresh token - $token = $esiHelper->GetRefreshToken($config['primary']); - //Setup the esi authentication container - $esi = $esiHelper->SetupEsiAuthentication($token); - - try { - $responses = $esi->invoke('get', '/corporation/{corporation_id}/mining/extractions/', [ - 'corporation_id' => 98287666, - ]); - } catch(RequestExceptionFailed $e) { - return null; - } - - foreach($response as $response) { - //Get whether the structure is being used by the alliance or not. - $usage = AllianceRentalMoon::where([ - 'structure_id' => $response->structure_id, - 'rental_type' => 'Alliance', - ])->count(); - - if($usage > 0) { - AllianceRentalMoon::where([ - 'structure_id' => $response->structure_id, - ])->update([ - 'next_moon_pull' => $response->chunk_arrival_time, - ]); - } - } - } -} diff --git a/app/Library/Fleets/FleetHelper.php b/app/Library/Fleets/FleetHelper.php deleted file mode 100644 index a2a0de331..000000000 --- a/app/Library/Fleets/FleetHelper.php +++ /dev/null @@ -1,67 +0,0 @@ -HaveEsiScope($charId, 'esi-fleets.read_fleet.v1'); - if($check) { - //Setup the ESI authentication container - $this->esi = $esiHelper->SetupEsiAuthentication(); - } else { - $this->esi = null; - } - } - - //Get fleet information - public function GetFleetInfo($fleetId) { - - } - - //Get fleet members - public function GetFleetMembers($fleetId) { - - } - - //Get fleet wings - public function GetFleetWings($fleetId) { - - } - - //Update fleet time - public function UpdateFleetTime($fleetId) { - - } - - //Update fleet character names - public function UpdateFleetCharacters($fleetId) { - - } -} - -?> \ No newline at end of file diff --git a/app/Library/Market/MarketHelper.php b/app/Library/Market/MarketHelper.php deleted file mode 100644 index 0e597d44b..000000000 --- a/app/Library/Market/MarketHelper.php +++ /dev/null @@ -1,74 +0,0 @@ -esi = $esi; - } - - /** - * Get the regional market orders - * - * @var region - */ - public function GetRegionalMarketOrders($region) { - - } - - /** - * Price an item out and return the different price schemes - * - * @var itemId - */ - public function PriceItem($itemId) { - - } - - /** - * Get the market group infromation - * - * @var group - */ - public function GetMarketGroup($group) { - - } - - /** - * Get the public contract items - * - * @var contractId - */ - public function GetPublicContractItem($contractId) { - - } - - /** - * Get market price for an item - * - * @var itemId - */ - public function GetMarketPrice($itemId) { - - } -} - -?> \ No newline at end of file diff --git a/app/Library/RegionalContracts/RegionalContractHelper.php b/app/Library/RegionalContracts/RegionalContractHelper.php deleted file mode 100644 index 73ab49f35..000000000 --- a/app/Library/RegionalContracts/RegionalContractHelper.php +++ /dev/null @@ -1,85 +0,0 @@ -region = $region; - $this->esi = $esi; - } - - /** - * Get the contracts within a region - * - * @var private - */ - public function GetContracts() { - - //Get the public contracts from the ESI - $responses = $this->esi->invoke('get', '/contracts/public/{region_id}/', [ - 'region_id' => $this->region, - ]); - - //Send the contracts back to the calling function - return $responses; - } - - /** - * Price the regional contract - * - * @var buyout - * @var contract_id - * @var date_expired - * @var date_issued - * @var days_to_complete - * @var end_location_id - * @var issuer_id - * @var price - * @var title - * @var type [unknown, item_exchange, auction, courier, loan] - * @var volume - */ - public function PriceContract($contract) { - - } - - /** - * Function to get the items in a contract from ESI - * - * @var id - */ - public function GetContractItems($contractId) { - $items = $this->esi->invoke('get', '/contracts/public/items/{contract_id}/', [ - 'contract_id' => $contractId, - ]); - - return $items; - } -} - -?> \ No newline at end of file diff --git a/app/Models/Fleets/AllianceFleet.php b/app/Models/Fleets/AllianceFleet.php deleted file mode 100644 index ead8a37eb..000000000 --- a/app/Models/Fleets/AllianceFleet.php +++ /dev/null @@ -1,32 +0,0 @@ -bigInteger('invoice_id'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('alliance_moon_rental_invoices', function (Blueprint $table) { + $table->dropColumn('invoice_id'); + }); + } +} diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 9b38d1874..45f0c09f8 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -14,6 +14,7 @@ return array( 'App\\Console\\Commands\\Eve\\ItemPricesUpdateCommand' => $baseDir . '/app/Console/Commands/Eve/ItemPricesUpdateCommand.php', 'App\\Console\\Commands\\Files\\MoonFormatter' => $baseDir . '/app/Console/Commands/Files/MoonFormatter.php', 'App\\Console\\Commands\\Files\\UpdateItemCompositionFromSDECommand' => $baseDir . '/app/Console/Commands/Files/UpdateItemCompositionFromSDECommand.php', + 'App\\Console\\Commands\\Finances\\AllianceBondsCommand' => $baseDir . '/app/Console/Commands/Finances/AllianceBondsCommand.php', 'App\\Console\\Commands\\Finances\\HoldingFinancesCommand' => $baseDir . '/app/Console/Commands/Finances/HoldingFinancesCommand.php', 'App\\Console\\Commands\\Finances\\SovBillsCommand' => $baseDir . '/app/Console/Commands/Finances/SovBillsCommand.php', 'App\\Console\\Commands\\Flex\\FlexStructureCommand' => $baseDir . '/app/Console/Commands/Flex/FlexStructureCommand.php', @@ -35,6 +36,8 @@ return array( 'App\\Http\\Controllers\\Dashboard\\AdminDashboardController' => $baseDir . '/app/Http/Controllers/Dashboard/AdminDashboardController.php', 'App\\Http\\Controllers\\Dashboard\\DashboardController' => $baseDir . '/app/Http/Controllers/Dashboard/DashboardController.php', 'App\\Http\\Controllers\\Dashboard\\StatisticsController' => $baseDir . '/app/Http/Controllers/Dashboard/StatisticsController.php', + 'App\\Http\\Controllers\\Finances\\AdminWarpedBondsController' => $baseDir . '/app/Http/Controllers/Finances/AdminWarpedBondsController.php', + 'App\\Http\\Controllers\\Finances\\WarpedBondsController' => $baseDir . '/app/Http/Controllers/Finances/WarpedBondsController.php', 'App\\Http\\Controllers\\Flex\\FlexAdminController' => $baseDir . '/app/Http/Controllers/Flex/FlexAdminController.php', 'App\\Http\\Controllers\\Logistics\\FuelController' => $baseDir . '/app/Http/Controllers/Logistics/FuelController.php', 'App\\Http\\Controllers\\Logistics\\StructureRequestAdminController' => $baseDir . '/app/Http/Controllers/Logistics/StructureRequestAdminController.php', @@ -59,6 +62,7 @@ return array( 'App\\Http\\Middleware\\TrimStrings' => $baseDir . '/app/Http/Middleware/TrimStrings.php', 'App\\Http\\Middleware\\TrustProxies' => $baseDir . '/app/Http/Middleware/TrustProxies.php', 'App\\Http\\Middleware\\VerifyCsrfToken' => $baseDir . '/app/Http/Middleware/VerifyCsrfToken.php', + 'App\\Jobs\\Commands\\Bonds\\ProcessAllianceBond' => $baseDir . '/app/Jobs/Commands/Bonds/ProcessAllianceBond.php', 'App\\Jobs\\Commands\\Eve\\ItemPricesUpdateJob' => $baseDir . '/app/Jobs/Commands/Eve/ItemPricesUpdateJob.php', 'App\\Jobs\\Commands\\Moons\\FetchMoonLedgerJob' => $baseDir . '/app/Jobs/Commands/Moons/FetchMoonLedgerJob.php', 'App\\Jobs\\Commands\\Moons\\FetchMoonObserverJob' => $baseDir . '/app/Jobs/Commands/Moons/FetchMoonObserverJob.php', @@ -92,10 +96,8 @@ return array( 'App\\Library\\Fleets\\FleetHelper' => $baseDir . '/app/Library/Fleets/FleetHelper.php', 'App\\Library\\JumpBridges\\JumpBridgeHelper' => $baseDir . '/app/Library/JumpBridges/JumpBridgeHelper.php', 'App\\Library\\Lookups\\LookupHelper' => $baseDir . '/app/Library/Lookups/LookupHelper.php', - 'App\\Library\\Market\\MarketHelper' => $baseDir . '/app/Library/Market/MarketHelper.php', 'App\\Library\\Moons\\MiningLedgerHelper' => $baseDir . '/app/Library/Moons/MiningLedgerHelper.php', 'App\\Library\\Moons\\MoonCalc' => $baseDir . '/app/Library/Moons/MoonCalc.php', - 'App\\Library\\RegionalContracts\\RegionalContractHelper' => $baseDir . '/app/Library/RegionalContracts/RegionalContractHelper.php', 'App\\Library\\SRP\\SRPHelper' => $baseDir . '/app/Library/SRP/SRPHelper.php', 'App\\Library\\Structures\\StructureHelper' => $baseDir . '/app/Library/Structures/StructureHelper.php', 'App\\Library\\Taxes\\TaxesHelper' => $baseDir . '/app/Library/Taxes/TaxesHelper.php', @@ -112,7 +114,9 @@ return array( 'App\\Models\\Esi\\EsiScope' => $baseDir . '/app/Models/Esi/EsiScope.php', 'App\\Models\\Esi\\EsiToken' => $baseDir . '/app/Models/Esi/EsiToken.php', 'App\\Models\\Eve\\EveRegion' => $baseDir . '/app/Models/Eve/EveRegion.php', + 'App\\Models\\Finances\\AllianceBond' => $baseDir . '/app/Models/Finances/AllianceBond.php', 'App\\Models\\Finances\\AllianceMarketJournal' => $baseDir . '/app/Models/Finances/AllianceMarketJournal.php', + 'App\\Models\\Finances\\Bondee' => $baseDir . '/app/Models/Finances/Bondee.php', 'App\\Models\\Finances\\JumpBridgeJournal' => $baseDir . '/app/Models/Finances/JumpBridgeJournal.php', 'App\\Models\\Finances\\OfficeFeesJournal' => $baseDir . '/app/Models/Finances/OfficeFeesJournal.php', 'App\\Models\\Finances\\PISaleJournal' => $baseDir . '/app/Models/Finances/PISaleJournal.php', diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 03cb8e5e4..8bd67852b 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -544,6 +544,7 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'App\\Console\\Commands\\Eve\\ItemPricesUpdateCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Eve/ItemPricesUpdateCommand.php', 'App\\Console\\Commands\\Files\\MoonFormatter' => __DIR__ . '/../..' . '/app/Console/Commands/Files/MoonFormatter.php', 'App\\Console\\Commands\\Files\\UpdateItemCompositionFromSDECommand' => __DIR__ . '/../..' . '/app/Console/Commands/Files/UpdateItemCompositionFromSDECommand.php', + 'App\\Console\\Commands\\Finances\\AllianceBondsCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Finances/AllianceBondsCommand.php', 'App\\Console\\Commands\\Finances\\HoldingFinancesCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Finances/HoldingFinancesCommand.php', 'App\\Console\\Commands\\Finances\\SovBillsCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Finances/SovBillsCommand.php', 'App\\Console\\Commands\\Flex\\FlexStructureCommand' => __DIR__ . '/../..' . '/app/Console/Commands/Flex/FlexStructureCommand.php', @@ -565,6 +566,8 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'App\\Http\\Controllers\\Dashboard\\AdminDashboardController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/AdminDashboardController.php', 'App\\Http\\Controllers\\Dashboard\\DashboardController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/DashboardController.php', 'App\\Http\\Controllers\\Dashboard\\StatisticsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Dashboard/StatisticsController.php', + 'App\\Http\\Controllers\\Finances\\AdminWarpedBondsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Finances/AdminWarpedBondsController.php', + 'App\\Http\\Controllers\\Finances\\WarpedBondsController' => __DIR__ . '/../..' . '/app/Http/Controllers/Finances/WarpedBondsController.php', 'App\\Http\\Controllers\\Flex\\FlexAdminController' => __DIR__ . '/../..' . '/app/Http/Controllers/Flex/FlexAdminController.php', 'App\\Http\\Controllers\\Logistics\\FuelController' => __DIR__ . '/../..' . '/app/Http/Controllers/Logistics/FuelController.php', 'App\\Http\\Controllers\\Logistics\\StructureRequestAdminController' => __DIR__ . '/../..' . '/app/Http/Controllers/Logistics/StructureRequestAdminController.php', @@ -589,6 +592,7 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'App\\Http\\Middleware\\TrimStrings' => __DIR__ . '/../..' . '/app/Http/Middleware/TrimStrings.php', 'App\\Http\\Middleware\\TrustProxies' => __DIR__ . '/../..' . '/app/Http/Middleware/TrustProxies.php', 'App\\Http\\Middleware\\VerifyCsrfToken' => __DIR__ . '/../..' . '/app/Http/Middleware/VerifyCsrfToken.php', + 'App\\Jobs\\Commands\\Bonds\\ProcessAllianceBond' => __DIR__ . '/../..' . '/app/Jobs/Commands/Bonds/ProcessAllianceBond.php', 'App\\Jobs\\Commands\\Eve\\ItemPricesUpdateJob' => __DIR__ . '/../..' . '/app/Jobs/Commands/Eve/ItemPricesUpdateJob.php', 'App\\Jobs\\Commands\\Moons\\FetchMoonLedgerJob' => __DIR__ . '/../..' . '/app/Jobs/Commands/Moons/FetchMoonLedgerJob.php', 'App\\Jobs\\Commands\\Moons\\FetchMoonObserverJob' => __DIR__ . '/../..' . '/app/Jobs/Commands/Moons/FetchMoonObserverJob.php', @@ -622,10 +626,8 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'App\\Library\\Fleets\\FleetHelper' => __DIR__ . '/../..' . '/app/Library/Fleets/FleetHelper.php', 'App\\Library\\JumpBridges\\JumpBridgeHelper' => __DIR__ . '/../..' . '/app/Library/JumpBridges/JumpBridgeHelper.php', 'App\\Library\\Lookups\\LookupHelper' => __DIR__ . '/../..' . '/app/Library/Lookups/LookupHelper.php', - 'App\\Library\\Market\\MarketHelper' => __DIR__ . '/../..' . '/app/Library/Market/MarketHelper.php', 'App\\Library\\Moons\\MiningLedgerHelper' => __DIR__ . '/../..' . '/app/Library/Moons/MiningLedgerHelper.php', 'App\\Library\\Moons\\MoonCalc' => __DIR__ . '/../..' . '/app/Library/Moons/MoonCalc.php', - 'App\\Library\\RegionalContracts\\RegionalContractHelper' => __DIR__ . '/../..' . '/app/Library/RegionalContracts/RegionalContractHelper.php', 'App\\Library\\SRP\\SRPHelper' => __DIR__ . '/../..' . '/app/Library/SRP/SRPHelper.php', 'App\\Library\\Structures\\StructureHelper' => __DIR__ . '/../..' . '/app/Library/Structures/StructureHelper.php', 'App\\Library\\Taxes\\TaxesHelper' => __DIR__ . '/../..' . '/app/Library/Taxes/TaxesHelper.php', @@ -642,7 +644,9 @@ class ComposerStaticInitc3f953f8a7291d41a76e1664339777c9 'App\\Models\\Esi\\EsiScope' => __DIR__ . '/../..' . '/app/Models/Esi/EsiScope.php', 'App\\Models\\Esi\\EsiToken' => __DIR__ . '/../..' . '/app/Models/Esi/EsiToken.php', 'App\\Models\\Eve\\EveRegion' => __DIR__ . '/../..' . '/app/Models/Eve/EveRegion.php', + 'App\\Models\\Finances\\AllianceBond' => __DIR__ . '/../..' . '/app/Models/Finances/AllianceBond.php', 'App\\Models\\Finances\\AllianceMarketJournal' => __DIR__ . '/../..' . '/app/Models/Finances/AllianceMarketJournal.php', + 'App\\Models\\Finances\\Bondee' => __DIR__ . '/../..' . '/app/Models/Finances/Bondee.php', 'App\\Models\\Finances\\JumpBridgeJournal' => __DIR__ . '/../..' . '/app/Models/Finances/JumpBridgeJournal.php', 'App\\Models\\Finances\\OfficeFeesJournal' => __DIR__ . '/../..' . '/app/Models/Finances/OfficeFeesJournal.php', 'App\\Models\\Finances\\PISaleJournal' => __DIR__ . '/../..' . '/app/Models/Finances/PISaleJournal.php',