From 3e823cfa2e3d32977c68762ac893544a19f6f5f4 Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Sat, 21 May 2016 22:03:36 +0200 Subject: [PATCH] Add @noinspection PhpMultipleClassesDeclarationsInOneFile tags --- wcfsetup/install.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wcfsetup/install.php b/wcfsetup/install.php index 80acdc638a..f36ad6a225 100644 --- a/wcfsetup/install.php +++ b/wcfsetup/install.php @@ -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. * -- 2.20.1