find . -type f -exec sed -i 's/Pterodactyl/App/g' {} +

This commit is contained in:
denis 2024-11-03 04:20:53 -05:00
parent fc219e9908
commit 5202acba56
9 changed files with 27 additions and 27 deletions

View file

@ -1,11 +1,11 @@
<?php
namespace Pterodactyl\BlueprintFramework\Controllers;
namespace App\BlueprintFramework\Controllers;
use Pterodactyl\Http\Controllers\Controller;
use App\Http\Controllers\Controller;
use Illuminate\Http\RedirectResponse;
use Pterodactyl\Http\Requests\Admin\AdminFormRequest;
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
use App\Http\Requests\Admin\AdminFormRequest;
use App\Contracts\Repository\SettingsRepositoryInterface;
class ExtensionConfigurationController extends Controller
{
@ -15,8 +15,8 @@ class ExtensionConfigurationController extends Controller
public function __construct(private SettingsRepositoryInterface $settings,) {}
/**
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
* @throws \App\Exceptions\Model\DataValidationException
* @throws \App\Exceptions\Repository\RecordNotFoundException
*/
public function update(ExtensionConfigurationRequest $request): RedirectResponse
{

View file

@ -1,10 +1,10 @@
<?php
namespace Pterodactyl\BlueprintFramework\Controllers;
namespace App\BlueprintFramework\Controllers;
use Pterodactyl\Http\Requests\Api\Client\ClientApiRequest;
use Pterodactyl\Http\Controllers\Api\Client\ClientApiController;
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
use App\Http\Requests\Api\Client\ClientApiRequest;
use App\Http\Controllers\Api\Client\ClientApiController;
use App\Contracts\Repository\SettingsRepositoryInterface;
class ExtensionRouteController extends ClientApiController
{

View file

@ -1,6 +1,6 @@
<?php
namespace Pterodactyl\BlueprintFramework;
namespace App\BlueprintFramework;
use Illuminate\Console\Scheduling\Schedule;
use File;

View file

@ -12,9 +12,9 @@
* @since alpha
*/
namespace Pterodactyl\BlueprintFramework\Libraries\ExtensionLibrary\Admin;
namespace App\BlueprintFramework\Libraries\ExtensionLibrary\Admin;
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
use App\Contracts\Repository\SettingsRepositoryInterface;
class BlueprintAdminLibrary
{
@ -69,7 +69,7 @@ class BlueprintAdminLibrary
}
/**
* Display a notification on the Pterodactyl admin panel (on next page load).
* Display a notification on the App admin panel (on next page load).
*
* @param string $text Notification contents
* @return void Nothing is returned
@ -82,7 +82,7 @@ class BlueprintAdminLibrary
}
/**
* Display a notification on the Pterodactyl admin panel and refresh the page after a certain delay.
* Display a notification on the App admin panel and refresh the page after a certain delay.
*
* @param string $delay Refresh after (in seconds)
* @param string $text Notification contents
@ -97,7 +97,7 @@ class BlueprintAdminLibrary
}
/**
* Display a notification on the Pterodactyl admin panel and refresh the page instantly.
* Display a notification on the App admin panel and refresh the page instantly.
* Behaves the same as calling `notifyAfter()` with a delay of zero.
*
* @param string $text Notification contents

View file

@ -12,9 +12,9 @@
* @since alpha
*/
namespace Pterodactyl\BlueprintFramework\Libraries\ExtensionLibrary\Client;
namespace App\BlueprintFramework\Libraries\ExtensionLibrary\Client;
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
use App\Contracts\Repository\SettingsRepositoryInterface;
class BlueprintClientLibrary
{

View file

@ -12,9 +12,9 @@
* @since beta
*/
namespace Pterodactyl\BlueprintFramework\Libraries\ExtensionLibrary\Console;
namespace App\BlueprintFramework\Libraries\ExtensionLibrary\Console;
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
use App\Contracts\Repository\SettingsRepositoryInterface;
class BlueprintConsoleLibrary
{

View file

@ -1,7 +1,7 @@
<?php
namespace Pterodactyl\BlueprintFramework\Services\ConfigService;
use Pterodactyl\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
namespace App\BlueprintFramework\Services\ConfigService;
use App\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
class BlueprintConfigService
{

View file

@ -1,6 +1,6 @@
<?php
namespace Pterodactyl\BlueprintFramework\Services\PlaceholderService;
namespace App\BlueprintFramework\Services\PlaceholderService;
class BlueprintPlaceholderService
{

View file

@ -1,9 +1,9 @@
<?php
namespace Pterodactyl\BlueprintFramework\Services\TelemetryService;
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
use Pterodactyl\BlueprintFramework\Services\ConfigService\BlueprintConfigService;
use Pterodactyl\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
namespace App\BlueprintFramework\Services\TelemetryService;
use App\Contracts\Repository\SettingsRepositoryInterface;
use App\BlueprintFramework\Services\ConfigService\BlueprintConfigService;
use App\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
class BlueprintTelemetryService
{