thedudeguy / PHP-Minecraft-Rcon

Simple Rcon class for php.
MIT License
155 stars 54 forks source link

an error #31

Open Mastergamer433 opened 3 years ago

Mastergamer433 commented 3 years ago

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

ricardoboss commented 3 years ago

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(...);