summaryrefslogtreecommitdiffstats
path: root/tests/lib/App
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 13:53:40 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 13:54:22 +0200
commitafbd9c4e6ed834e713039f2cff88ba3eec03dadb (patch)
tree7d8721cf8fc0329d6b750db63798de67a162b090 /tests/lib/App
parent19e97e86c69ab128191439d6a17dacb5a630cf98 (diff)
downloadnextcloud-server-afbd9c4e6ed834e713039f2cff88ba3eec03dadb.tar.gz
nextcloud-server-afbd9c4e6ed834e713039f2cff88ba3eec03dadb.zip
Unify function spacing to PSR2 recommendation
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/lib/App')
-rw-r--r--tests/lib/App/AppManagerTest.php4
-rw-r--r--tests/lib/App/AppStore/Fetcher/AppFetcherTest.php8
-rw-r--r--tests/lib/App/AppStore/Fetcher/CategoryFetcherTest.php4
-rw-r--r--tests/lib/App/AppStore/Fetcher/FetcherBase.php10
-rw-r--r--tests/lib/App/DependencyAnalyzerTest.php6
5 files changed, 16 insertions, 16 deletions
diff --git a/tests/lib/App/AppManagerTest.php b/tests/lib/App/AppManagerTest.php
index 56a20a14300..1a5d6c648a1 100644
--- a/tests/lib/App/AppManagerTest.php
+++ b/tests/lib/App/AppManagerTest.php
@@ -465,7 +465,7 @@ class AppManagerTest extends TestCase {
$manager->expects($this->any())
->method('getAppInfo')
->willReturnCallback(
- function($appId) use ($appInfos) {
+ function ($appId) use ($appInfos) {
return $appInfos[$appId];
}
);
@@ -514,7 +514,7 @@ class AppManagerTest extends TestCase {
$manager->expects($this->any())
->method('getAppInfo')
->willReturnCallback(
- function($appId) use ($appInfos) {
+ function ($appId) use ($appInfos) {
return $appInfos[$appId];
}
);
diff --git a/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php b/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php
index a381175b0a6..9b772ca5bfc 100644
--- a/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php
+++ b/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php
@@ -1863,7 +1863,7 @@ EJL3BaQAQaASSsvFrcozYxrQG4VzEg==
public function testGetWithFilter() {
$this->config->method('getSystemValue')
- ->willReturnCallback(function($key, $default) {
+ ->willReturnCallback(function ($key, $default) {
if ($key === 'appstoreenabled') {
return true;
} else if ($key === 'version') {
@@ -1946,7 +1946,7 @@ EJL3BaQAQaASSsvFrcozYxrQG4VzEg==
public function testAppstoreDisabled() {
$this->config
->method('getSystemValue')
- ->willReturnCallback(function($var, $default) {
+ ->willReturnCallback(function ($var, $default) {
if ($var === 'appstoreenabled') {
return false;
} else if ($var === 'version') {
@@ -1965,7 +1965,7 @@ EJL3BaQAQaASSsvFrcozYxrQG4VzEg==
public function testNoInternet() {
$this->config
->method('getSystemValue')
- ->willReturnCallback(function($var, $default) {
+ ->willReturnCallback(function ($var, $default) {
if ($var === 'has_internet_connection') {
return false;
} else if ($var === 'version') {
@@ -1982,7 +1982,7 @@ EJL3BaQAQaASSsvFrcozYxrQG4VzEg==
public function testSetVersion() {
$this->config->method('getSystemValue')
- ->willReturnCallback(function($key, $default) {
+ ->willReturnCallback(function ($key, $default) {
if ($key === 'appstoreenabled') {
return true;
} else if ($key === 'version') {
diff --git a/tests/lib/App/AppStore/Fetcher/CategoryFetcherTest.php b/tests/lib/App/AppStore/Fetcher/CategoryFetcherTest.php
index 22e7a8742ec..47be7adcc7b 100644
--- a/tests/lib/App/AppStore/Fetcher/CategoryFetcherTest.php
+++ b/tests/lib/App/AppStore/Fetcher/CategoryFetcherTest.php
@@ -41,7 +41,7 @@ class CategoryFetcherTest extends FetcherBase {
public function testAppstoreDisabled() {
$this->config
->method('getSystemValue')
- ->willReturnCallback(function($var, $default) {
+ ->willReturnCallback(function ($var, $default) {
if ($var === 'appstoreenabled') {
return false;
}
@@ -57,7 +57,7 @@ class CategoryFetcherTest extends FetcherBase {
public function testNoInternet() {
$this->config
->method('getSystemValue')
- ->willReturnCallback(function($var, $default) {
+ ->willReturnCallback(function ($var, $default) {
if ($var === 'has_internet_connection') {
return false;
}
diff --git a/tests/lib/App/AppStore/Fetcher/FetcherBase.php b/tests/lib/App/AppStore/Fetcher/FetcherBase.php
index 9dac4dd7499..11813c7f3bd 100644
--- a/tests/lib/App/AppStore/Fetcher/FetcherBase.php
+++ b/tests/lib/App/AppStore/Fetcher/FetcherBase.php
@@ -210,7 +210,7 @@ abstract class FetcherBase extends TestCase {
public function testGetWithAlreadyExistingFileAndOutdatedTimestamp() {
$this->config->method('getSystemValue')
- ->willReturnCallback(function($key, $default) {
+ ->willReturnCallback(function ($key, $default) {
if ($key === 'appstoreenabled') {
return true;
} else if ($key === 'version') {
@@ -463,7 +463,7 @@ abstract class FetcherBase extends TestCase {
public function testGetWithExceptionInClient() {
$this->config->method('getSystemValue')
- ->willReturnCallback(function($key, $default) {
+ ->willReturnCallback(function ($key, $default) {
if ($key === 'appstoreenabled') {
return true;
} else {
@@ -503,7 +503,7 @@ abstract class FetcherBase extends TestCase {
public function testGetMatchingETag() {
$this->config->method('getSystemValue')
- ->willReturnCallback(function($key, $default) {
+ ->willReturnCallback(function ($key, $default) {
if ($key === 'appstoreenabled') {
return true;
} else if ($key === 'version') {
@@ -584,7 +584,7 @@ abstract class FetcherBase extends TestCase {
public function testGetNoMatchingETag() {
$this->config->method('getSystemValue')
- ->willReturnCallback(function($key, $default) {
+ ->willReturnCallback(function ($key, $default) {
if ($key === 'appstoreenabled') {
return true;
} else if ($key === 'version') {
@@ -671,7 +671,7 @@ abstract class FetcherBase extends TestCase {
public function testFetchAfterUpgradeNoETag() {
$this->config->method('getSystemValue')
- ->willReturnCallback(function($key, $default) {
+ ->willReturnCallback(function ($key, $default) {
if ($key === 'appstoreenabled') {
return true;
} else if ($key === 'version') {
diff --git a/tests/lib/App/DependencyAnalyzerTest.php b/tests/lib/App/DependencyAnalyzerTest.php
index 52965d4a72d..9ac44b97cc5 100644
--- a/tests/lib/App/DependencyAnalyzerTest.php
+++ b/tests/lib/App/DependencyAnalyzerTest.php
@@ -44,12 +44,12 @@ class DependencyAnalyzerTest extends TestCase {
->willReturn( 'Linux');
$this->platformMock->expects($this->any())
->method('isCommandKnown')
- ->willReturnCallback( function($command) {
+ ->willReturnCallback( function ($command) {
return ($command === 'grep');
});
$this->platformMock->expects($this->any())
->method('getLibraryVersion')
- ->willReturnCallback( function($lib) {
+ ->willReturnCallback( function ($lib) {
if ($lib === 'curl') {
return "2.3.4";
}
@@ -64,7 +64,7 @@ class DependencyAnalyzerTest extends TestCase {
->getMock();
$this->l10nMock->expects($this->any())
->method('t')
- ->willReturnCallback(function($text, $parameters = []) {
+ ->willReturnCallback(function ($text, $parameters = []) {
return vsprintf($text, $parameters);
});