Scrutinizer Auto-Fixes

This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
remotes/origin/fix-delete-homeidr-on-userdelete
Scrutinizer Auto-Fixer 11 years ago committed by Thomas Müller
parent 802f226d8a
commit dcbd603514
  1. 2
      apps/files/controller/apicontroller.php
  2. 4
      apps/files/lib/activity.php
  3. 3
      apps/files_external/lib/config.php
  4. 1
      apps/files_external/lib/config/configadapter.php
  5. 2
      apps/files_external/lib/sftp.php

@ -127,7 +127,7 @@ class ApiController extends Controller {
*
* @NoAdminRequired
*
* @param array|string $tagName tag name to filter by
* @param string[] $tagName tag name to filter by
* @return DataResponse
*/
public function getFilesByTag($tagName) {

@ -166,7 +166,7 @@ class Activity implements IExtension {
* @param string $text
* @param IL10N $l
* @param array $params
* @return bool|string
* @return string|false
*/
protected function translateLong($text, IL10N $l, array $params) {
switch ($text) {
@ -198,7 +198,7 @@ class Activity implements IExtension {
* @param string $text
* @param IL10N $l
* @param array $params
* @return bool|string
* @return string|false
*/
protected function translateShort($text, IL10N $l, array $params) {
switch ($text) {

@ -243,6 +243,7 @@ class OC_Mount_Config {
*
* @param string $class backend class name
* @param array $options backend configuration options
* @param boolean $isPersonal
* @return int see self::STATUS_*
* @throws Exception
*/
@ -357,7 +358,7 @@ class OC_Mount_Config {
* @param \OCP\IL10N $l
* @param string $module
* @param string $backend
* @return string
* @return OC_L10N_String
*/
private static function getSingleDependencyMessage(\OCP\IL10N $l, $module, $backend) {
switch (strtolower($module)) {

@ -32,7 +32,6 @@ use OCP\IUser;
use OCA\Files_external\Service\UserStoragesService;
use OCA\Files_External\Service\UserGlobalStoragesService;
use OCA\Files_External\Lib\StorageConfig;
use OCP\Files\StorageNotAvailableException;
use OCA\Files_External\Lib\FailedStorage;
/**

@ -195,7 +195,7 @@ class SFTP extends \OC\Files\Storage\Common {
}
/**
* @return bool|string
* @return string|false
*/
private function hostKeysPath() {
try {

Loading…
Cancel
Save