No I'm developing a PHP app and sharing code with github. My problem seems that the php editor can't find classes that exists. I post some code for example:
<?php
require_once('../../vendor/autoload.php');
use AppilGiusto\Database\MySqlAdapter;
use AppilGiusto\Users\Users;
use AppilGiusto\Exceptions\MysqlConnectionException;
use Hybridauth\Hybridauth;
use Firebase\JWT;
$db = new MySqlAdapter();
$user = new Users($db);
echo $user->LoginUser($_POST);
I got an error in $db = new MySqlAdapter() use of unknown class but is there in the folder AppilGiusto\Database
and the class MySqlAdapter has this namespace AppilGiusto\Database;
So maybe for that reason I have the files uneditable