Add @noinspection PhpMissingParentConstructorInspection tags
authorMatthias Schmidt <gravatronics@live.com>
Sat, 21 May 2016 17:18:48 +0000 (19:18 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Sat, 21 May 2016 18:42:02 +0000 (20:42 +0200)
16 files changed:
wcfsetup/install.php
wcfsetup/install/files/lib/data/DatabaseObjectDecorator.class.php
wcfsetup/install/files/lib/data/acp/session/log/ACPSessionLog.class.php
wcfsetup/install/files/lib/data/clipboard/item/ClipboardItemAction.class.php
wcfsetup/install/files/lib/data/template/Template.class.php
wcfsetup/install/files/lib/data/user/User.class.php
wcfsetup/install/files/lib/data/user/follow/UserFollowingList.class.php
wcfsetup/install/files/lib/system/CLIWCF.class.php
wcfsetup/install/files/lib/system/WCFACP.class.php
wcfsetup/install/files/lib/system/WCFSetup.class.php
wcfsetup/install/files/lib/system/database/exception/DatabaseException.class.php
wcfsetup/install/files/lib/system/database/exception/DatabaseQueryExecutionException.class.php
wcfsetup/install/files/lib/system/io/GZipFile.class.php
wcfsetup/install/files/lib/system/io/RemoteFile.class.php
wcfsetup/install/files/lib/system/io/TarWriter.class.php
wcfsetup/install/files/lib/system/package/PackageUninstallationDispatcher.class.php

index 622b83f699a7b401342c11b0f222b8a0dd238c18..80acdc638a448dde177e2e81bdc2aaf90b6f005a 100644 (file)
@@ -759,6 +759,7 @@ class ZipFile extends File {
         */
        protected static $gzopen64 = null;
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * Opens a new zipped file.
         *
index 253d8f503c25488da80978f42fef6ca6730b3df7..f1ffc2a4aef6f8d13eea2e44f445018b226c31bd 100644 (file)
@@ -25,6 +25,7 @@ abstract class DatabaseObjectDecorator extends DatabaseObject {
         */
        protected $object = null;
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * Creates a new DatabaseObjectDecorator object.
         * 
index fec50de475f6d19c24334df95464260b18f90804..d1557c4a936bad5512c49eb41c989e406d6e0219 100644 (file)
@@ -34,6 +34,7 @@ class ACPSessionLog extends DatabaseObject {
         */
        protected static $databaseTableIndexName = 'sessionLogID';
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * @inheritDoc
         */
index 0d864966fcf42b8b0abdf028802a26adc622286b..b707ee7be37ff271d96b4c26bf4f9e6ce5a1277d 100644 (file)
@@ -24,6 +24,7 @@ class ClipboardItemAction extends AbstractDatabaseObjectAction {
         */
        public $objectTypeID = 0;
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * This is a heavily modified constructor which behaves differently from other DBOActions,
         * primarily because this class just masquerades as a regular DBOAction.
index 3e328ab7ecac0f79bcfad14e15d8ccfefdbcf3eb..374faceeb9bb566b7e627b0b37756da58de6d24a 100644 (file)
@@ -34,6 +34,7 @@ class Template extends DatabaseObject {
         */
        protected static $databaseTableIndexName = 'templateID';
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * @inheritDoc
         */
index a6dd23718c1bea230cf530edb71c8afa2ae91b2d..b9835d77011bcdb92037213777c92039ae052165 100644 (file)
@@ -107,6 +107,7 @@ final class User extends DatabaseObject implements IRouteController, IUserConten
         */
        protected static $userOptions = null;
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * @inheritDoc
         */
index 9addecaaa5ebbf1afbe4068ed5c7b3372ee11b53..18ed4c2f66eb7824dd7415d9b1f731f85ee46b37 100644 (file)
@@ -17,6 +17,7 @@ class UserFollowingList extends UserFollowerList {
         */
        public $useQualifiedShorthand = false;
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * @inheritDoc
         */
index ee6d601a2abef8faf470b2f817dd6c87405810a7..85d7add66f0745c374a380d7d10a6b3fd99812c8 100644 (file)
@@ -47,6 +47,7 @@ class CLIWCF extends WCF {
         */
        protected static $argvParser = null;
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * Calls all init functions of the WCF class.
         */
index e5e6f1b1ace433d4941e99c728692ddf95ceba4a..1c6f9410a2957b3c0c3601dde1d85399f72ebf3a 100644 (file)
@@ -39,6 +39,7 @@ class WCFACP extends WCF {
         */
        protected static $rescueModePageURL;
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * Calls all init functions of the WCF and the WCFACP class. 
         */
index 6ac9a25fbe37a1d978a01a4800a78e90731541a2..b08da629c5db6aa902b503aae7e750281b92edc5 100644 (file)
@@ -98,6 +98,7 @@ class WCFSetup extends WCF {
                //'PostgreSQLDatabase' => ['class' => 'wcf\system\database\PostgreSQLDatabase', 'minversion' => '8.2.0']        // PostgreSQL 8.2.0+
        ];
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * Calls all init functions of the WCFSetup class and starts the setup process.
         */
index 3d1278c558e9679057bc257ad05bb6943e984430..777261697b5b90272c6827dbc39fefd7a111d0e8 100644 (file)
@@ -13,6 +13,7 @@ namespace wcf\system\database\exception;
  * @since      2.2
  */
 class DatabaseException extends \wcf\system\database\DatabaseException {
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * @inheritDoc
         */
index 9bbd111cc9d308083a9a73f7fd2988b3e112552a..2e874e018501a28b27892ee94fce26444bf093a1 100644 (file)
@@ -20,6 +20,7 @@ class DatabaseQueryExecutionException extends DatabaseQueryException implements
         */
        protected $parameters = [];
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * @inheritDoc
         */
index 76f6939efd2998e7fa5ab74e412096adb4c020a3..226cf2e1628c54e3836bc438a4d78e79cfd3997e 100644 (file)
@@ -20,6 +20,7 @@ class GZipFile extends File {
         */
        protected static $gzopen64 = null;
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * Opens a gzip file.
         * 
index 43597c734af7e2241ef4980caf4b3d7ff5262be8..3c71862f2d2cd541f464dbd47e9b35180e2561f9 100644 (file)
@@ -43,6 +43,7 @@ class RemoteFile extends File {
         */
        private static $hasSSLSupport = null;
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * Opens a new connection to a remote host.
         * 
index 89865fdfb788911e2554aeb2f4a12c4f41ebe77d..4017ef4aa7b190095d6f55ce5c5ab21641540443 100644 (file)
@@ -26,6 +26,7 @@ class TarWriter extends Tar {
         */
        protected $mode = 'wb+';
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * Creates a new TarWriter object.
         * 
index 710422cc6c7da91b2d84263d710d594dbbac4beb..fc960405eb07f083bf511bb448df5fbe67137692 100644 (file)
@@ -34,6 +34,7 @@ class PackageUninstallationDispatcher extends PackageInstallationDispatcher {
         */
        protected $didExecuteUninstallScript = false;
        
+       /** @noinspection PhpMissingParentConstructorInspection */
        /**
         * Creates a new instance of PackageUninstallationDispatcher.
         * 
@@ -43,7 +44,7 @@ class PackageUninstallationDispatcher extends PackageInstallationDispatcher {
                $this->queue = $queue;
                $this->nodeBuilder = new PackageUninstallationNodeBuilder($this);
                
-               $this->action = $this->queue->installationType;
+               $this->action = $this->queue->action;
        }
        
        /**