Format code according to PSR2
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
28f8eb5dba
commit
734c62bee0
|
@ -50,8 +50,7 @@ use Sabre\DAV\Exception\ServiceUnavailable;
|
|||
use Sabre\DAV\IFile;
|
||||
use Sabre\DAV\INode;
|
||||
|
||||
class Directory extends \OCA\DAV\Connector\Sabre\Node
|
||||
implements \Sabre\DAV\ICollection, \Sabre\DAV\IQuota, \Sabre\DAV\IMoveTarget {
|
||||
class Directory extends \OCA\DAV\Connector\Sabre\Node implements \Sabre\DAV\ICollection, \Sabre\DAV\IQuota, \Sabre\DAV\IMoveTarget {
|
||||
|
||||
/**
|
||||
* Cached directory content
|
||||
|
|
|
@ -428,6 +428,7 @@ class FileSearchBackend implements ISearchBackend {
|
|||
} else {
|
||||
return null;
|
||||
}
|
||||
// no break
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ use OCP\IUser;
|
|||
use PHPUnit_Framework_MockObject_MockObject;
|
||||
use Test\TestCase;
|
||||
|
||||
class ConverterTest extends TestCase {
|
||||
class ConverterTest extends TestCase {
|
||||
|
||||
/** @var AccountManager | PHPUnit_Framework_MockObject_MockObject */
|
||||
private $accountManager;
|
||||
|
|
|
@ -30,7 +30,7 @@ use OCP\IConfig;
|
|||
use OCP\IUserSession;
|
||||
use OCP\Settings\ISettings;
|
||||
|
||||
class Personal implements ISettings {
|
||||
class Personal implements ISettings {
|
||||
|
||||
/** @var IConfig */
|
||||
private $config;
|
||||
|
|
|
@ -29,7 +29,7 @@ namespace OCA\Files_Trashbin\Sabre;
|
|||
use Sabre\DAV\Exception\Forbidden;
|
||||
use Sabre\DAV\IFile;
|
||||
|
||||
abstract class AbstractTrashFile extends AbstractTrash implements IFile , ITrash {
|
||||
abstract class AbstractTrashFile extends AbstractTrash implements IFile, ITrash {
|
||||
public function put($data) {
|
||||
throw new Forbidden();
|
||||
}
|
||||
|
|
|
@ -348,6 +348,7 @@ class Connection extends LDAPUtility {
|
|||
$result[$dbkey] = implode("\n", $config[$configkey]);
|
||||
break;
|
||||
} //else follows default
|
||||
// no break
|
||||
default:
|
||||
$result[$dbkey] = $config[$configkey];
|
||||
}
|
||||
|
|
|
@ -150,6 +150,7 @@ class SetConfig extends Base {
|
|||
throw new \InvalidArgumentException('Unable to parse value as boolean');
|
||||
}
|
||||
|
||||
// no break
|
||||
case 'null':
|
||||
return [
|
||||
'value' => null,
|
||||
|
|
|
@ -282,7 +282,7 @@ class Request implements \ArrayAccess, \Countable, IRequest {
|
|||
case 'parameters':
|
||||
case 'params':
|
||||
return $this->getContent();
|
||||
default;
|
||||
default:
|
||||
return isset($this[$name])
|
||||
? $this[$name]
|
||||
: null;
|
||||
|
|
|
@ -110,6 +110,7 @@ class QuerySearchHelper {
|
|||
} else {
|
||||
throw new \InvalidArgumentException('Binary operators inside "not" is not supported');
|
||||
}
|
||||
// no break
|
||||
case ISearchBinaryOperator::OPERATOR_AND:
|
||||
return call_user_func_array([$expr, 'andX'], $this->searchOperatorArrayToDBExprArray($builder, $operator->getArguments()));
|
||||
case ISearchBinaryOperator::OPERATOR_OR:
|
||||
|
|
|
@ -304,6 +304,7 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common {
|
|||
} else {
|
||||
return false;
|
||||
}
|
||||
// no break
|
||||
case 'w':
|
||||
case 'wb':
|
||||
case 'w+':
|
||||
|
|
|
@ -189,6 +189,7 @@ abstract class Flysystem extends Common {
|
|||
case 'wb':
|
||||
case 'wb+':
|
||||
$useExisting = false;
|
||||
// no break
|
||||
case 'a':
|
||||
case 'ab':
|
||||
case 'r+':
|
||||
|
|
|
@ -60,8 +60,8 @@ use OCP\IDBConnection;
|
|||
/**
|
||||
* Class for group management in a SQL Database (e.g. MySQL, SQLite)
|
||||
*/
|
||||
class Database extends ABackend
|
||||
implements IAddToGroupBackend,
|
||||
class Database extends ABackend implements
|
||||
IAddToGroupBackend,
|
||||
ICountDisabledInGroup,
|
||||
ICountUsersBackend,
|
||||
ICreateGroupBackend,
|
||||
|
|
|
@ -64,6 +64,7 @@ class LanguageIterator implements ILanguageIterator {
|
|||
}
|
||||
$this->next();
|
||||
/** @noinspection PhpMissingBreakStatementInspection */
|
||||
// no break
|
||||
case 1:
|
||||
$forcedLang = $this->config->getSystemValue('force_language', false);
|
||||
if (is_string($forcedLang)
|
||||
|
@ -73,6 +74,7 @@ class LanguageIterator implements ILanguageIterator {
|
|||
}
|
||||
$this->next();
|
||||
/** @noinspection PhpMissingBreakStatementInspection */
|
||||
// no break
|
||||
case 2:
|
||||
$userLang = $this->config->getUserValue($this->user->getUID(), 'core', 'lang', null);
|
||||
if (is_string($userLang)) {
|
||||
|
@ -80,6 +82,7 @@ class LanguageIterator implements ILanguageIterator {
|
|||
}
|
||||
$this->next();
|
||||
/** @noinspection PhpMissingBreakStatementInspection */
|
||||
// no break
|
||||
case 3:
|
||||
$userLang = $this->config->getUserValue($this->user->getUID(), 'core', 'lang', null);
|
||||
if (is_string($userLang)
|
||||
|
@ -88,6 +91,7 @@ class LanguageIterator implements ILanguageIterator {
|
|||
return $truncated;
|
||||
}
|
||||
$this->next();
|
||||
// no break
|
||||
case 4:
|
||||
return $this->config->getSystemValue('default_language', 'en');
|
||||
/** @noinspection PhpMissingBreakStatementInspection */
|
||||
|
@ -97,6 +101,7 @@ class LanguageIterator implements ILanguageIterator {
|
|||
return $truncated;
|
||||
}
|
||||
$this->next();
|
||||
// no break
|
||||
default:
|
||||
return 'en';
|
||||
}
|
||||
|
|
|
@ -72,8 +72,10 @@ class MemoryInfo {
|
|||
switch ($last) {
|
||||
case 'g':
|
||||
$memoryLimit *= 1024;
|
||||
// no break
|
||||
case 'm':
|
||||
$memoryLimit *= 1024;
|
||||
// no break
|
||||
case 'k':
|
||||
$memoryLimit *= 1024;
|
||||
}
|
||||
|
|
|
@ -76,8 +76,8 @@ use OCP\User\Backend\ISetPasswordBackend;
|
|||
/**
|
||||
* Class for user management in a SQL Database (e.g. MySQL, SQLite)
|
||||
*/
|
||||
class Database extends ABackend
|
||||
implements ICreateUserBackend,
|
||||
class Database extends ABackend implements
|
||||
ICreateUserBackend,
|
||||
ISetPasswordBackend,
|
||||
ISetDisplayNameBackend,
|
||||
IGetDisplayNameBackend,
|
||||
|
|
Loading…
Reference in New Issue