PHP-Minecraft-Rcon icon indicating copy to clipboard operation
PHP-Minecraft-Rcon copied to clipboard

an error

Open Mastergamer433 opened this issue 3 years ago • 1 comments

Fatal error: Uncaught Error: Class "Rcon" not found i have tested on 1 bilion ways but it dont works

Mastergamer433 avatar Apr 24 '21 04:04 Mastergamer433

You need to use the namespace when using the class:

$rcon = new Thedudeguy\Rcon(...);

or add a use statement after including the file:

use Thedudeguy\Rcon;

$rcon = new Rcon(...);

ricardoboss avatar Apr 26 '21 21:04 ricardoboss