You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With VSCODE and itellephense not found definitions for models, for example:
//app/http/controllers/Api/ProcessController.php
namespace App\Http\Controllers\Api;
use App\Models\Center\Center;
$center = Center::where("uid", 1)->first();
$mySome = $center->getSome(); //No definition found for 'getSome()'
//app/models/Center/Center.php
namespace App\Models\Center;
class Center extends Model {
public function getSome()
{
return "some";
}
}
Go to definition "getSome()" on Controller not go
The text was updated successfully, but these errors were encountered:
Feature Description
With VSCODE and itellephense not found definitions for models, for example:
Go to definition "getSome()" on Controller not go
The text was updated successfully, but these errors were encountered: