![]() |
Error: Class "Websocket\Client" not found - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Error: Class "Websocket\Client" not found (/showthread.php?tid=90987) |
Error: Class "Websocket\Client" not found - darby4738 - 05-31-2024 I feel like this should not be so difficult, but I'm struggling with it for almost the entire day, so I'm asking for help! I installed a websocket client with composer like this: Code: composer require textalk/websocket I use IntelliJ, and when I add PHP Code: use Websocket\Client; PHP Code: $wsClient = new Client($URL); I have located all of the needed files in vendor/textalk folder, checked all autoload files exist, but I just don't know where to go from here. Thanks in advance!!! RE: Error: Class "Websocket\Client" not found - ozornick - 05-31-2024 Refresh IDE. I install package in demo. It work. PHP Code: <?php Code: $wsClient WebSocket\Client#94 (6) RE: Error: Class "Websocket\Client" not found - kenjis - 06-01-2024 Because you typed the classname. It is "WebSocket\Client" not "Websocket\Client". RE: Error: Class "Websocket\Client" not found - darby4738 - 06-01-2024 (06-01-2024, 04:22 AM)kenjis Wrote: Because you typed the classname. Well you're a lifesaver. And I feel stupid!! Thank you!!! |