diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-02-11 11:32:01 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-02-11 11:46:02 +0100 |
commit | e618ea83b5a54f566e1cc1fbfdfcce07be752108 (patch) | |
tree | ccdd98ca8a2505576fa9813d78430acc69985d52 /lib/private/App/CodeChecker/AbstractCheck.php | |
parent | d5dea10517bbceaf141f56b6dde0efb55fc6f4b5 (diff) | |
download | nextcloud-server-e618ea83b5a54f566e1cc1fbfdfcce07be752108.tar.gz nextcloud-server-e618ea83b5a54f566e1cc1fbfdfcce07be752108.zip |
Make the app code checker a NOOP
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/App/CodeChecker/AbstractCheck.php')
-rw-r--r-- | lib/private/App/CodeChecker/AbstractCheck.php | 140 |
1 files changed, 0 insertions, 140 deletions
diff --git a/lib/private/App/CodeChecker/AbstractCheck.php b/lib/private/App/CodeChecker/AbstractCheck.php deleted file mode 100644 index 2e2209ed33b..00000000000 --- a/lib/private/App/CodeChecker/AbstractCheck.php +++ /dev/null @@ -1,140 +0,0 @@ -<?php -/** - * @copyright Copyright (c) 2016, ownCloud, Inc. - * - * @author Joas Schilling <coding@schilljs.com> - * - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OC\App\CodeChecker; - -abstract class AbstractCheck implements ICheck { - /** @var ICheck */ - protected $check; - - /** - * @param ICheck $check - */ - public function __construct(ICheck $check) { - $this->check = $check; - } - - /** - * @param int $errorCode - * @param string $errorObject - * @return string - */ - public function getDescription($errorCode, $errorObject) { - switch ($errorCode) { - case CodeChecker::STATIC_CALL_NOT_ALLOWED: - $functions = $this->getLocalFunctions(); - $functions = array_change_key_case($functions, CASE_LOWER); - if (isset($functions[$errorObject])) { - return $this->getLocalDescription(); - } - // no break; - case CodeChecker::CLASS_EXTENDS_NOT_ALLOWED: - case CodeChecker::CLASS_IMPLEMENTS_NOT_ALLOWED: - case CodeChecker::CLASS_NEW_NOT_ALLOWED: - case CodeChecker::CLASS_USE_NOT_ALLOWED: - $classes = $this->getLocalClasses(); - $classes = array_change_key_case($classes, CASE_LOWER); - if (isset($classes[$errorObject])) { - return $this->getLocalDescription(); - } - break; - - case CodeChecker::CLASS_CONST_FETCH_NOT_ALLOWED: - $constants = $this->getLocalConstants(); - $constants = array_change_key_case($constants, CASE_LOWER); - if (isset($constants[$errorObject])) { - return $this->getLocalDescription(); - } - break; - - case CodeChecker::CLASS_METHOD_CALL_NOT_ALLOWED: - $methods = $this->getLocalMethods(); - $methods = array_change_key_case($methods, CASE_LOWER); - if (isset($methods[$errorObject])) { - return $this->getLocalDescription(); - } - break; - } - - return $this->check->getDescription($errorCode, $errorObject); - } - - /** - * @return string - */ - abstract protected function getLocalDescription(); - - /** - * @return array - */ - abstract protected function getLocalClasses(); - - /** - * @return array - */ - abstract protected function getLocalConstants(); - - /** - * @return array - */ - abstract protected function getLocalFunctions(); - - /** - * @return array - */ - abstract protected function getLocalMethods(); - - /** - * @return array E.g.: `'ClassName' => 'oc version',` - */ - public function getClasses() { - return array_merge($this->getLocalClasses(), $this->check->getClasses()); - } - - /** - * @return array E.g.: `'ClassName::CONSTANT_NAME' => 'oc version',` - */ - public function getConstants() { - return array_merge($this->getLocalConstants(), $this->check->getConstants()); - } - - /** - * @return array E.g.: `'functionName' => 'oc version',` - */ - public function getFunctions() { - return array_merge($this->getLocalFunctions(), $this->check->getFunctions()); - } - - /** - * @return array E.g.: `'ClassName::methodName' => 'oc version',` - */ - public function getMethods() { - return array_merge($this->getLocalMethods(), $this->check->getMethods()); - } - - /** - * @return bool - */ - public function checkStrongComparisons() { - return $this->check->checkStrongComparisons(); - } -} |