Hello,
I am trying to compare the auto-complete of phpstorm vs visual studio as I would like to stay with visual studio.
The problem is that visual studio is not working too well for auto-completion and I would like to know why
please.
In my case, I have installed this:
https://github.com/braintree/braintree_php
To integrate this library, I need to add this to my serviceprovider boot file:
\Braintree_Configuration::environment(env(‘BRAINTREE_ENV’));
\Braintree_Configuration::merchantId(env(‘BRAINTREE_MERCHANT_ID’));
\Braintree_Configuration::publicKey(env(‘BRAINTREE_PUBLIC_KEY’));
\Braintree_Configuration::privateKey(env(‘BRAINTREE_PRIVATE_KEY’));
Here is the test.
In PHP storm, when I type:
\Braintree_
Automatically, all the classes and functions of this library are popping up in the dropdown menu.
Under visual studio, I get nothing at all or completely unrelated classes.
How do fix this, please?
Thank you.