26 lines
601 B
PHP
26 lines
601 B
PHP
|
<?php
|
||
|
|
||
|
namespace Pterodactyl\Exceptions\Solutions;
|
||
|
|
||
|
use Spatie\Ignition\Contracts\Solution;
|
||
|
|
||
|
class ManifestDoesNotExistSolution implements Solution
|
||
|
{
|
||
|
public function getSolutionTitle(): string
|
||
|
{
|
||
|
return "The manifest.json file hasn't been generated yet";
|
||
|
}
|
||
|
|
||
|
public function getSolutionDescription(): string
|
||
|
{
|
||
|
return 'Run yarn run build:production to build the frontend first.';
|
||
|
}
|
||
|
|
||
|
public function getDocumentationLinks(): array
|
||
|
{
|
||
|
return [
|
||
|
'Docs' => 'https://github.com/pterodactyl/panel/blob/develop/package.json',
|
||
|
];
|
||
|
}
|
||
|
}
|