Index: branches/5.2.x/units/shipping_quote_engines/shipping_quote_collector.php =================================================================== diff -u -N -r15141 -r16516 --- branches/5.2.x/units/shipping_quote_engines/shipping_quote_collector.php (.../shipping_quote_collector.php) (revision 15141) +++ branches/5.2.x/units/shipping_quote_engines/shipping_quote_collector.php (.../shipping_quote_collector.php) (revision 16516) @@ -1,6 +1,6 @@ Application->recallObject('CountryStatesHelper'); - /* @var $cs_helper kCountryStatesHelper */ $has_states = $cs_helper->CountryHasStates( $cs_helper->getCountryIso($params['dest_country'], true) ); @@ -43,8 +43,8 @@ $classes = $this->getEngineClasses(); foreach ($classes as $class) { + /** @var ShippingQuoteEngine $object */ $object = $this->Application->recallObject($class); - /* @var $object ShippingQuoteEngine */ $new_shipping_types = $object->GetShippingQuotes($params); @@ -115,8 +115,8 @@ $classes = $this->getEngineClasses(); foreach ($classes as $class) { + /** @var ShippingQuoteEngine $object */ $object = $this->Application->recallObject($class); - /* @var $object ShippingQuoteEngine */ $new_shipping_types = $object->GetAvailableTypes(); $shipping_types = array_merge($shipping_types, $new_shipping_types); @@ -162,8 +162,8 @@ $shipping_id = $shipping_info[$package_num]['ShippingId']; foreach ($classes as $class) { + /** @var ShippingQuoteEngine $object */ $object = $this->Application->recallObject($class); - /* @var $object ShippingQuoteEngine */ $shipping_types = $object->GetAvailableTypes();