From 0c22e3332e4822dbe2af7f666f08eae5d77f8fbd Mon Sep 17 00:00:00 2001 From: Igor Hrcek Date: Sun, 20 Mar 2022 23:22:04 +0100 Subject: [PATCH] fix: Fixed incorrect method name --- src/SubCommands/FixFileAndDirPermissions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SubCommands/FixFileAndDirPermissions.php b/src/SubCommands/FixFileAndDirPermissions.php index 241fd9e..257def0 100644 --- a/src/SubCommands/FixFileAndDirPermissions.php +++ b/src/SubCommands/FixFileAndDirPermissions.php @@ -18,7 +18,7 @@ class FixFileAndDirPermissions { * * @return bool */ - public function fixPermissions() : bool { + public function output() : bool { //Stop execution if ABSPATH is not defined to prevent changing permissions in the wrong place if(!defined('ABSPATH')) { return false;