From: Matthias Schmidt Date: Sat, 21 May 2016 20:03:36 +0000 (+0200) Subject: Add @noinspection PhpMultipleClassesDeclarationsInOneFile tags X-Git-Tag: 3.0.0_Beta_1~1681^2~7 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3e823cfa2e3d32977c68762ac893544a19f6f5f4;p=GitHub%2FWoltLab%2FWCF.git Add @noinspection PhpMultipleClassesDeclarationsInOneFile tags --- 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. *