Index: branches/5.3.x/units/shipping_quote_engines/intershipper.php =================================================================== diff -u -N -r15899 -r16522 --- branches/5.3.x/units/shipping_quote_engines/intershipper.php (.../intershipper.php) (revision 15899) +++ branches/5.3.x/units/shipping_quote_engines/intershipper.php (.../intershipper.php) (revision 16522) @@ -1,6 +1,6 @@ Application->ConfigValue('Comm_Shipping_Country'); } + /** @var kCountryStatesHelper $cs_helper */ $cs_helper = $this->Application->recallObject('CountryStatesHelper'); - /* @var $cs_helper kCountryStatesHelper */ if (strlen($params['orig_country']) == 3) { // got 3symbol ISO code -> resolve to 2symbol ISO code @@ -253,8 +253,8 @@ xml_set_element_handler( $xml_parser, Array(&$this, 'startElement'), Array(&$this, 'endElement') ); xml_set_character_data_handler( $xml_parser, Array(&$this, 'characterData') ); + /** @var kCurlHelper $curl_helper */ $curl_helper = $this->Application->recallObject('CurlHelper'); - /* @var $curl_helper kCurlHelper */ $curl_helper->SetPostData($target_url['uri']); $newdata = $curl_helper->Send($target_url['url']);