From b73eb19aed66190c10c9cad476da7c36c271d6dc Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Thu, 19 Sep 2019 15:08:45 +0300 Subject: [ci skip] 3.1.11 release --- tests/mocks/core/security.php | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 tests/mocks/core/security.php (limited to 'tests/mocks/core/security.php') diff --git a/tests/mocks/core/security.php b/tests/mocks/core/security.php deleted file mode 100644 index 6cff85860..000000000 --- a/tests/mocks/core/security.php +++ /dev/null @@ -1,35 +0,0 @@ -{'_'.$property}) ? $this->{'_'.$property} : NULL; - } - - public function remove_evil_attributes($str, $is_image) - { - return $this->_remove_evil_attributes($str, $is_image); - } - - // Override inaccessible protected method - public function __call($method, $params) - { - if (is_callable(array($this, '_'.$method))) - { - return call_user_func_array(array($this, '_'.$method), $params); - } - - throw new BadMethodCallException('Method '.$method.' was not found'); - } - -} -- cgit v1.2.3-24-g4f1b