aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-02-12 17:36:44 +0100
committerFerdinand Thiessen <opensource@fthiessen.de>2024-02-12 17:36:44 +0100
commit5e124c4a8acb1a4c883f654b5f7865204e7e8b7d (patch)
treeb95443099c83078d4415a543a3054df99040d626 /apps
parent919288603a6657ffb5d2461e02f82c1c157e07a9 (diff)
downloadnextcloud-server-5e124c4a8acb1a4c883f654b5f7865204e7e8b7d.tar.gz
nextcloud-server-5e124c4a8acb1a4c883f654b5f7865204e7e8b7d.zip
fix(files): Remove dead code from files controllers
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps')
-rw-r--r--apps/files/lib/Controller/ViewController.php20
-rw-r--r--apps/files/tests/Controller/ViewControllerTest.php5
2 files changed, 2 insertions, 23 deletions
diff --git a/apps/files/lib/Controller/ViewController.php b/apps/files/lib/Controller/ViewController.php
index 5172194dd8b..e7398cc21c2 100644
--- a/apps/files/lib/Controller/ViewController.php
+++ b/apps/files/lib/Controller/ViewController.php
@@ -116,26 +116,6 @@ class ViewController extends Controller {
}
/**
- * @param string $appName
- * @param string $scriptName
- * @return string
- */
- protected function renderScript($appName, $scriptName) {
- $content = '';
- $appPath = \OC_App::getAppPath($appName);
- $scriptPath = $appPath . '/' . $scriptName;
- if (file_exists($scriptPath)) {
- // TODO: sanitize path / script name ?
- ob_start();
- include $scriptPath;
- $content = ob_get_contents();
- @ob_end_clean();
- }
-
- return $content;
- }
-
- /**
* FIXME: Replace with non static code
*
* @return array
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php
index 588c93f8316..0b71011f60c 100644
--- a/apps/files/tests/Controller/ViewControllerTest.php
+++ b/apps/files/tests/Controller/ViewControllerTest.php
@@ -71,9 +71,9 @@ class ViewControllerTest extends TestCase {
private $eventDispatcher;
/** @var ViewController|\PHPUnit\Framework\MockObject\MockObject */
private $viewController;
- /** @var IUser */
+ /** @var IUser|\PHPUnit\Framework\MockObject\MockObject */
private $user;
- /** @var IUserSession */
+ /** @var IUserSession|\PHPUnit\Framework\MockObject\MockObject */
private $userSession;
/** @var IAppManager|\PHPUnit\Framework\MockObject\MockObject */
private $appManager;
@@ -135,7 +135,6 @@ class ViewControllerTest extends TestCase {
])
->setMethods([
'getStorageInfo',
- 'renderScript'
])
->getMock();
}