ghanoz / google-api-dfp-php

Automatically exported from code.google.com/p/google-api-dfp-php
Apache License 2.0
0 stars 0 forks source link

Synthax error in AdsSoapClient.php #27

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hello,

I found a synthax error in file :
src/Google/Api/Ads/Common/Lib/AdsSoapClient.php on line 340

catch (DOMException $e) {
      trigger_error('Failed to load response into DOM: '
          . $domException->getMessage(), E_USER_NOTICE);

$domException doesn't exists.

Replace
catch (DOMException $e) {

by

catch (DOMException $domException) {

Regards,

Nicolas Garcia

Original issue reported on code.google.com by dfp...@wikiogroup.com on 29 Nov 2011 at 9:28

GoogleCodeExporter commented 8 years ago
EDIT : 

There's the same problem on line 356 of this file.

Original comment by dfp...@wikiogroup.com on 29 Nov 2011 at 9:33

GoogleCodeExporter commented 8 years ago
This was fixed in r122

Original comment by ekoleda+devrel@googlers.com on 6 Dec 2011 at 2:27