Browse Source

Scrutinizer Auto-Fixes

This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
tags/v9.0beta1
Scrutinizer Auto-Fixer 8 years ago
parent
commit
dcbd603514

+ 1
- 1
apps/files/controller/apicontroller.php View File

@@ -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) {

+ 2
- 2
apps/files/lib/activity.php View File

@@ -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) {

+ 2
- 1
apps/files_external/lib/config.php View File

@@ -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)) {

+ 0
- 1
apps/files_external/lib/config/configadapter.php View File

@@ -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;

/**

+ 1
- 1
apps/files_external/lib/sftp.php View File

@@ -195,7 +195,7 @@ class SFTP extends \OC\Files\Storage\Common {
}

/**
* @return bool|string
* @return string|false
*/
private function hostKeysPath() {
try {

Loading…
Cancel
Save