Index: branches/5.2.x/units/taxes/taxes_tag_processor.php =================================================================== diff -u -N -r15156 -r16516 --- branches/5.2.x/units/taxes/taxes_tag_processor.php (.../taxes_tag_processor.php) (revision 15156) +++ branches/5.2.x/units/taxes/taxes_tag_processor.php (.../taxes_tag_processor.php) (revision 16516) @@ -1,6 +1,6 @@ getObject($params); - /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); $selected_country_id = (int)$this->Application->GetVar('CountrySelector'); @@ -68,8 +68,8 @@ break; case 'has_states': + /** @var kCountryStatesHelper $cs_helper */ $cs_helper = $this->Application->recallObject('CountryStatesHelper'); - /* @var $cs_helper kCountryStatesHelper */ $has_states = $cs_helper->getCountriesWithStates(); @@ -126,8 +126,8 @@ function ShowStates($params) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); @@ -193,8 +193,8 @@ function ShowZips($params) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); @@ -258,8 +258,8 @@ static $table_name = ''; if (!$table_name) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $table_name = $this->Application->getUnitOption('taxdst', 'TableName');