Index: branches/5.3.x/units/taxes/taxes_tag_processor.php =================================================================== diff -u -N -r15695 -r16522 --- branches/5.3.x/units/taxes/taxes_tag_processor.php (.../taxes_tag_processor.php) (revision 15695) +++ branches/5.3.x/units/taxes/taxes_tag_processor.php (.../taxes_tag_processor.php) (revision 16522) @@ -1,6 +1,6 @@ getObject($params); - /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); $selected_country_id = (int)$this->Application->GetVar('CountrySelector'); @@ -70,8 +70,8 @@ break; case 'has_states': + /** @var kCountryStatesHelper $cs_helper */ $cs_helper = $this->Application->recallObject('CountryStatesHelper'); - /* @var $cs_helper kCountryStatesHelper */ $has_states = $cs_helper->getCountriesWithStates(); @@ -128,8 +128,8 @@ function ShowStates($params) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); @@ -197,8 +197,8 @@ function ShowZips($params) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); @@ -262,8 +262,8 @@ static $table_name = ''; if (!$table_name) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $table_name = $this->Application->getUnitConfig('taxdst')->getTableName();