peliprint/app/Services/Helpers/BlueprintPlaceholderService.php
2023-04-17 13:48:45 +02:00

20 lines
439 B
PHP

<?php
namespace Pterodactyl\Services\Helpers;
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
class BlueprintPlaceholderService
{
// Construct BlueprintPlaceholderService
public function __construct(
private SettingsRepositoryInterface $settings,
) {
}
// $bp->version()
public
function version(): string {
$v = "([(pterodactylmarket_version)])";
return $v;
}
}