diff --git a/app/Services/Helpers/BlueprintExtensionLibrary.php b/app/Services/Helpers/BlueprintExtensionLibrary.php index c3b4235..957b601 100644 --- a/app/Services/Helpers/BlueprintExtensionLibrary.php +++ b/app/Services/Helpers/BlueprintExtensionLibrary.php @@ -3,19 +3,24 @@ /* | Welcome to the Blueprint Extension Library. | -| This allows you and developers to interact with -| Blueprint easely and without hassle. +| This allows developers to interact with +| Pterodactyl easely and without hassle. */ namespace Pterodactyl\Services\Helpers; use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface; -use Illuminate\Http\RedirectResponse; +use Pterodactyl\Services\Helpers\BlueprintVariableService; +use Pterodactyl\Services\Helpers\BlueprintTelemetryService; +use Pterodactyl\Services\Helpers\BlueprintPlaceholderService; class BlueprintExtensionLibrary { // Construct BlueprintExtensionLibrary public function __construct( private SettingsRepositoryInterface $settings, + private BlueprintVariableService $bp, + private BlueprintTelemetryService $telemetry, + private BlueprintPlaceholderService $placeholder, ) { } diff --git a/app/Services/Helpers/BlueprintPlaceholderService.php b/app/Services/Helpers/BlueprintPlaceholderService.php index f1b08b6..c8dc67e 100644 --- a/app/Services/Helpers/BlueprintPlaceholderService.php +++ b/app/Services/Helpers/BlueprintPlaceholderService.php @@ -2,12 +2,18 @@ namespace Pterodactyl\Services\Helpers; use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface; +use Pterodactyl\Services\Helpers\BlueprintVariableService; +use Pterodactyl\Services\Helpers\BlueprintExtensionLibrary; +use Pterodactyl\Services\Helpers\BlueprintTelemetryService; class BlueprintPlaceholderService { // Construct BlueprintPlaceholderService public function __construct( private SettingsRepositoryInterface $settings, + private BlueprintVariableService $bp, + private BlueprintExtensionLibrary $lib, + private BlueprintTelemetryService $telemetry, ) { }