Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused 'use' statements #11

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion app/AdManager/CreativeManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
require __DIR__.'/../../vendor/autoload.php';

use Google\AdsApi\AdManager\Util\v201811\StatementBuilder;
use Google\AdsApi\AdManager\v201811\CreativeService;
use Google\AdsApi\AdManager\v201811\ThirdPartyCreative;
use Google\AdsApi\AdManager\v201811\Size;

Expand Down
1 change: 0 additions & 1 deletion app/AdManager/KeyManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
use Google\AdsApi\AdManager\v201811\CustomTargetingKeyType;
use Google\AdsApi\AdManager\Util\v201811\StatementBuilder;


class KeyManager extends Manager
{
public function setUpCustomTargetingKey($keyName)
Expand Down
1 change: 0 additions & 1 deletion app/AdManager/LineItemCreativeAssociationManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
require __DIR__.'/../../vendor/autoload.php';

use Google\AdsApi\AdManager\v201811\LineItemCreativeAssociation;
use Google\AdsApi\AdManager\v201811\LineItemCreativeAssociationService;
use Google\AdsApi\AdManager\v201811\Size;
use Google\AdsApi\AdManager\Util\v201811\StatementBuilder;
use Google\AdsApi\AdManager\v201811\ApiException;
Expand Down
3 changes: 1 addition & 2 deletions app/AdManager/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@

require __DIR__.'/../../vendor/autoload.php';

use Google\AdsApi\AdManager\AdManagerSession;
use Google\AdsApi\AdManager\AdManagerSessionBuilder;
use Google\AdsApi\Common\OAuth2TokenBuilder;

use Google\AdsApi\AdManager\v201811\ServiceFactory;

class Manager
{
protected $serviceFactory;
Expand Down
2 changes: 0 additions & 2 deletions app/AdManager/NetworkManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

require __DIR__.'/../../vendor/autoload.php';

use Google\AdsApi\AdManager\v201811\NetworkService;

class NetworkManager extends Manager
{
protected $dfpServices;
Expand Down
2 changes: 0 additions & 2 deletions app/AdManager/RootAdUnitManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

require __DIR__.'/../../vendor/autoload.php';

use Google\AdsApi\AdManager\v201811\NetworkService;

class RootAdUnitManager extends Manager
{
public function setRootAdUnit()
Expand Down
2 changes: 1 addition & 1 deletion script/tests/ConnexionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require __DIR__.'/../scriptLoader.php';

$traffickerId = (new \App\Dfp\UserManager())->getUserId();
$traffickerId = (new \App\AdManager\UserManager())->getUserId();

if (is_numeric($traffickerId)) {
echo "\n====Connexion OK====\n\n";
Expand Down