Index: branches/5.3.x/core/units/helpers/skin_helper.php =================================================================== diff -u -N -r15999 -r16519 --- branches/5.3.x/core/units/helpers/skin_helper.php (.../skin_helper.php) (revision 15999) +++ branches/5.3.x/core/units/helpers/skin_helper.php (.../skin_helper.php) (revision 16519) @@ -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); @@ -210,7 +210,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() ) { @@ -234,7 +234,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() ) ) {