Add @noinspection PhpMultipleClassesDeclarationsInOneFile tags
authorMatthias Schmidt <gravatronics@live.com>
Sat, 21 May 2016 20:03:36 +0000 (22:03 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Sat, 21 May 2016 20:03:36 +0000 (22:03 +0200)
wcfsetup/install.php

index 80acdc638a448dde177e2e81bdc2aaf90b6f005a..f36ad6a2257d4f775ad15f9703d69f2f02c57c0c 100644 (file)
@@ -32,6 +32,7 @@ $neededFilesPattern = [
        '!^install/packages/.*!'];
        
 // define needed functions and classes
+/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
 /**
  * WCF::handleException() calls the show method on exceptions that implement this interface.
  *
@@ -45,6 +46,7 @@ interface IPrintableException {
 // define needed classes
 // needed are:
 // SystemException, PrintableException, BasicFileUtil, Tar, File, ZipFile
+/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
 /**
  * A SystemException is thrown when an unexpected error occurs.
  *
@@ -227,6 +229,7 @@ function handleError($errorNo, $message, $filename, $lineNo) {
        }
 }
 
+/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
 /**
  * BasicFileUtil contains file-related functions.
  *
@@ -370,6 +373,7 @@ class BasicFileUtil {
        }
 }
 
+/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
 /**
  * Opens tar or tar.gz archives.
  *
@@ -687,6 +691,7 @@ class Tar {
        }
 }
 
+/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
 /**
  * The File class handles all file operations.
  *
@@ -746,6 +751,7 @@ class File {
        }
 }
 
+/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
 /**
  * The File class handles all file operations on a zipped file.
  *