33d3403995
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.
13 lines
253 B
PHP
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;}
|
|
}
|