]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix ctor call in OC\Core\Command\Upgrade
authorThomas Müller <thomas.mueller@tmit.eu>
Mon, 3 Nov 2014 12:53:59 +0000 (13:53 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Mon, 3 Nov 2014 12:53:59 +0000 (13:53 +0100)
core/command/upgrade.php

index 5b9432d631ba194578c0a1cb3e3ff514c99df25d..aaeb63a31240e71522fea4199a6b11cc3cafe972 100644 (file)
@@ -34,6 +34,7 @@ class Upgrade extends Command {
         * @param IConfig $config
         */
        public function __construct(IConfig $config) {
+               parent::__construct();
                $this->config = $config;
        }