Index: branches/5.2.x/core/units/helpers/skin_helper.php =================================================================== diff -u -N -r15137 -r16513 --- branches/5.2.x/core/units/helpers/skin_helper.php (.../skin_helper.php) (revision 15137) +++ branches/5.2.x/core/units/helpers/skin_helper.php (.../skin_helper.php) (revision 16513) @@ -1,6 +1,6 @@ Application->recallObject('skin.-item', null, Array ('skip_autoload' => true)); - /* @var $skin kDBItem */ $skin->Load(1, 'IsPrimary'); $last_compiled = $this->compile($skin); @@ -208,7 +208,7 @@ $last_compiled = 0; $iterator = new DirectoryIterator( $this->_getStylesheetPath() . DIRECTORY_SEPARATOR ); - /* @var $file_info DirectoryIterator */ + /** @var DirectoryIterator $file_info */ foreach ($iterator as $file_info) { if ( !$file_info->isFile() ) { @@ -232,7 +232,7 @@ function deleteCompiled() { $iterator = new DirectoryIterator( $this->_getStylesheetPath() . DIRECTORY_SEPARATOR ); - /* @var $file_info DirectoryIterator */ + /** @var DirectoryIterator $file_info */ foreach ($iterator as $file_info) { if ( $file_info->isFile() && $this->isSkinFile( $file_info->getFilename() ) ) {