peliprint/app/Services/Helpers/BlueprintVariableService.php
purple 33d3403995 Replaced placeholder and added "global variables"
The replacement of the placeholder is just a work in progress. I've also discovered a few more things about PHP now, including how to do variables and stuff.
2023-02-19 19:30:47 +01:00

13 lines
253 B
PHP

<?php
namespace Pterodactyl\Services\Helpers;
class BlueprintVariableService
{
// Construct BlueprintVariableService
public function __construct(){}
// $bp->licenseIsValid()
public function licenseIsValid(): bool{return true;}
}