Index: branches/1.3.x/units/sections/links/e_link_eh.php =================================================================== diff -u -N -r15692 -r16520 --- branches/1.3.x/units/sections/links/e_link_eh.php (.../e_link_eh.php) (revision 15692) +++ branches/1.3.x/units/sections/links/e_link_eh.php (.../e_link_eh.php) (revision 16520) @@ -83,8 +83,8 @@ { parent::SetCustomQuery($event); + /** @var kDBList $object */ $object = $event->getObject(); - /* @var $object kDBList */ # identifying event based on special and setting filter if ( $event->Special == 'custom-special' ) { Index: branches/1.3.x/units/sections/products/e_product_eh.php =================================================================== diff -u -N -r15692 -r16520 --- branches/1.3.x/units/sections/products/e_product_eh.php (.../e_product_eh.php) (revision 15692) +++ branches/1.3.x/units/sections/products/e_product_eh.php (.../e_product_eh.php) (revision 16520) @@ -84,8 +84,8 @@ { parent::SetCustomQuery($event); + /** @var kDBList $object */ $object = $event->getObject(); - /* @var $object kDBList */ # identifying event based on special and setting filter if ( $event->Special == 'custom-special' ) { Index: branches/1.3.x/units/widgets/widget_tp.php =================================================================== diff -u -N -r15692 -r16520 --- branches/1.3.x/units/widgets/widget_tp.php (.../widget_tp.php) (revision 15692) +++ branches/1.3.x/units/widgets/widget_tp.php (.../widget_tp.php) (revision 16520) @@ -26,8 +26,8 @@ */ function ItemEditLink($params) { + /** @var kDBList $object */ $object = $this->getObject($params); - /* @var $object kDBList */ $config = $this->getUnitConfig(); $edit_template = $config->getAdminTemplatePath() . '/' . $config->getAdminTemplatePrefix() . 'edit'; @@ -54,8 +54,8 @@ */ protected function ItemLink($params) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $params['pass'] = 'm,' . $this->Prefix; $params[$object->Prefix . '_id'] = $object->GetID(); Index: branches/1.3.x/install.php =================================================================== diff -u -N -r16504 -r16520 --- branches/1.3.x/install.php (.../install.php) (revision 16504) +++ branches/1.3.x/install.php (.../install.php) (revision 16520) @@ -20,8 +20,8 @@ } else { // install, using installation wizard + /** @var kInstallToolkit $toolkit */ $toolkit =& $this->toolkit; - /* @var $toolkit kInstallToolkit */ } $application =& kApplication::Instance(); Index: branches/1.3.x/units/sections/users/e_user_tp.php =================================================================== diff -u -N -r15496 -r16520 --- branches/1.3.x/units/sections/users/e_user_tp.php (.../e_user_tp.php) (revision 15496) +++ branches/1.3.x/units/sections/users/e_user_tp.php (.../e_user_tp.php) (revision 16520) @@ -16,8 +16,8 @@ */ function PrintFormattedUserAddress($params) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $ret = ''; $newline = '
'; Index: branches/1.3.x/units/widgets/widget_eh.php =================================================================== diff -u -N -r16396 -r16520 --- branches/1.3.x/units/widgets/widget_eh.php (.../widget_eh.php) (revision 16396) +++ branches/1.3.x/units/widgets/widget_eh.php (.../widget_eh.php) (revision 16520) @@ -113,8 +113,8 @@ */ function OnCustomEvent($event) { + /** @var kDBList $object */ $object = $event->getObject(); - /* @var $object kDBList */ } @@ -130,8 +130,8 @@ { parent::SetCustomQuery($event); + /** @var kDBList $object */ $object = $event->getObject(); - /* @var $object kDBList */ # identifying event based on special and setting filter if ( $event->Special == 'custom-special' ) { Index: branches/1.3.x/units/sections/categories/e_category_eh.php =================================================================== diff -u -N -r15692 -r16520 --- branches/1.3.x/units/sections/categories/e_category_eh.php (.../e_category_eh.php) (revision 15692) +++ branches/1.3.x/units/sections/categories/e_category_eh.php (.../e_category_eh.php) (revision 16520) @@ -83,8 +83,8 @@ { parent::SetCustomQuery($event); + /** @var kDBList $object */ $object = $event->getObject(); - /* @var $object kDBList */ # identifying event based on special and setting filter if ( $event->Special == 'custom-special' ) { Index: branches/1.3.x/units/sections/users/e_user_eh.php =================================================================== diff -u -N -r15692 -r16520 --- branches/1.3.x/units/sections/users/e_user_eh.php (.../e_user_eh.php) (revision 15692) +++ branches/1.3.x/units/sections/users/e_user_eh.php (.../e_user_eh.php) (revision 16520) @@ -83,8 +83,8 @@ { parent::SetCustomQuery($event); + /** @var kDBList $object */ $object = $event->getObject(); - /* @var $object kDBList */ # identifying event based on special and setting filter if ( $event->Special == 'custom-special' ) { Index: branches/1.3.x/units/sections/articles/e_article_eh.php =================================================================== diff -u -N -r15692 -r16520 --- branches/1.3.x/units/sections/articles/e_article_eh.php (.../e_article_eh.php) (revision 15692) +++ branches/1.3.x/units/sections/articles/e_article_eh.php (.../e_article_eh.php) (revision 16520) @@ -83,8 +83,8 @@ { parent::SetCustomQuery($event); + /** @var kDBList $object */ $object = $event->getObject(); - /* @var $object kDBList */ # identifying event based on special and setting filter if ( $event->Special == 'custom-special' ) {