I have a project that references shared code i.e.
require_once __DIR__ . '/../shared/league_data.php';
require_once __DIR__ . '/../shared/league_paths.php';
I added "..\shared" to the project properties Include Path setting and the "Call to unknown function ..." warnings are eliminated. But, when I search for a function that is in league_data.php only calls to that function in the local project files are found not the function itself. How can I include the shared files in the search?