I used to be able to change the DEFAULT_VERSION in the settings.ini file to tell my code what version of the adwords library to use. Now that I've graduated to the v201708 where I have to use composer and classes ./ namespaces I don't know what version I'm actually calling. My test code is working but I have no idea what version I'm actually calling.
As further information I cloned the github repo in my html directory. I then created a test sibling directory and copied the example/v201708/Targeting/LookupLocation.php and
adsapi_php.ini into this directory. I then edited LookupLocation.php as follows.
namespace Google\AdsAPI\Adwords;
require '../googleads-php-lib/vendor/autoload.php';
As I said my test code works but I have know idea what version I'm using.
Would I change my namespace to namespace Google\AdsApi\AdWords\v201708;
Thanks for any help