chore(deps): Update nextcloud/coding-standard to v1.3.1

Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
provokateurin
2024-09-19 11:10:31 +02:00
parent 8c60ffa0f2
commit 9836e9b164
595 changed files with 1657 additions and 1526 deletions
+3 -3
View File
@@ -131,17 +131,17 @@ try {
switch ($app) {
case 'core':
$file = OC::$SERVERROOT .'/'. $file;
$file = OC::$SERVERROOT . '/' . $file;
break;
default:
if (!$appManager->isInstalled($app)) {
throw new RemoteException('App not installed: ' . $app);
}
$appManager->loadApp($app);
$file = $appManager->getAppPath($app) .'/'. ($parts[1] ?? '');
$file = $appManager->getAppPath($app) . '/' . ($parts[1] ?? '');
break;
}
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
$baseuri = OC::$WEBROOT . '/remote.php/' . $service . '/';
require_once $file;
} catch (Exception $ex) {
handleException($ex);