I'm using the googleAds API, but when I include a class that I need in my function it still shows me an error :
Error: Class 'TargetingIdeaSelector' not found
File: C:\wamp64\www\projet\app\Model\Keyword.php
Line: 26
I'm including it like this :
include 'C:\wamp64\www\projet\vendors\googleads\googleads_php_lib\src\Google\AdsApi\AdWords\v201710\o\TargetingIdeaSelector.php';
And further in my function, I'm using this :
// Create selector.
$selector = new TargetingIdeaSelector();
Bringing me the error above. Is there something else to do to use a class previously included ?