]> git.mxchange.org Git - friendica.git/commitdiff
Type hinting & call bugfixing
authorPhilipp Holzer <admin@philipp.info>
Sun, 14 Oct 2018 08:37:19 +0000 (10:37 +0200)
committerPhilipp Holzer <admin@philipp.info>
Sun, 14 Oct 2018 08:37:19 +0000 (10:37 +0200)
src/Core/Console/AutomaticInstallation.php
src/Core/Install.php

index 2bfd1a7be1f81d0ff9b41e45afe7da9670476e43..c4e542e762738a674e3f3213f68d88b69c875273 100644 (file)
@@ -184,7 +184,7 @@ HELP;
        /**
         * @param Install $install the Installer instance
         */
-       private function runBasicChecks($install)
+       private function runBasicChecks(Install $install)
        {
                $install->resetChecks();
                $install->checkFunctions();
index 15983b719f38c0ecb243efcf674918cab4655d64..daf90b9fff65de12b2620d9e2815a5c349e171dd 100644 (file)
@@ -190,7 +190,7 @@ class Install
                        $phppath = "";
                }
 
-               self::addCheck(L10n::t('Command line PHP') . ($passed ? " (<tt>$phppath</tt>)" : ""), $passed, false, $help);
+               $this->addCheck(L10n::t('Command line PHP') . ($passed ? " (<tt>$phppath</tt>)" : ""), $passed, false, $help);
 
                if ($passed) {
                        $cmd = "$phppath -v";
@@ -202,7 +202,7 @@ class Install
                                $help .= L10n::t("PHP executable is not the php cli binary \x28could be cgi-fgci version\x29") . EOL;
                                $help .= L10n::t('Found PHP version: ') . "<tt>$result</tt>";
                        }
-                       self::addCheck(L10n::t('PHP cli binary'), $passed2, true, $help);
+                       $this->addCheck(L10n::t('PHP cli binary'), $passed2, true, $help);
                } else {
                        // return if it was required
                        return $required;
@@ -221,7 +221,7 @@ class Install
                                $this->phppath = $phppath;
                        }
 
-                       self::addCheck(L10n::t('PHP register_argc_argv'), $passed3, true, $help);
+                       $this->addCheck(L10n::t('PHP register_argc_argv'), $passed3, true, $help);
                }
 
                // passed2 & passed3 are required if first check passed
@@ -408,7 +408,7 @@ class Install
                        $help .= L10n::t('You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.') . EOL;
                }
 
-               self::addCheck(L10n::t('config/local.ini.php is writable'), $status, false, $help);
+               $this->addCheck(L10n::t('config/local.ini.php is writable'), $status, false, $help);
 
                // Local INI File is not required
                return true;