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