aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/App/DependencyAnalyzerTest.php
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 16:07:47 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 16:07:47 +0200
commit44577e4345066952622feca9ef69c24fc23d08ab (patch)
tree362160e9a6cf5c55eb1a2cca5aa32fb3bac336ad /tests/lib/App/DependencyAnalyzerTest.php
parent42625a46be495ea1c60ac8fe8e13946fd9ed9732 (diff)
downloadnextcloud-server-44577e4345066952622feca9ef69c24fc23d08ab.tar.gz
nextcloud-server-44577e4345066952622feca9ef69c24fc23d08ab.zip
Remove trailing and in between spaces
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/lib/App/DependencyAnalyzerTest.php')
-rw-r--r--tests/lib/App/DependencyAnalyzerTest.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/lib/App/DependencyAnalyzerTest.php b/tests/lib/App/DependencyAnalyzerTest.php
index 9ac44b97cc5..40cd308f886 100644
--- a/tests/lib/App/DependencyAnalyzerTest.php
+++ b/tests/lib/App/DependencyAnalyzerTest.php
@@ -32,24 +32,24 @@ class DependencyAnalyzerTest extends TestCase {
->getMock();
$this->platformMock->expects($this->any())
->method('getPhpVersion')
- ->willReturn( '5.4.3');
+ ->willReturn('5.4.3');
$this->platformMock->expects($this->any())
->method('getIntSize')
- ->willReturn( '4');
+ ->willReturn('4');
$this->platformMock->expects($this->any())
->method('getDatabase')
- ->willReturn( 'mysql');
+ ->willReturn('mysql');
$this->platformMock->expects($this->any())
->method('getOS')
- ->willReturn( 'Linux');
+ ->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";
}
@@ -57,7 +57,7 @@ class DependencyAnalyzerTest extends TestCase {
});
$this->platformMock->expects($this->any())
->method('getOcVersion')
- ->willReturn( '8.0.2');
+ ->willReturn('8.0.2');
$this->l10nMock = $this->getMockBuilder(IL10N::class)
->disableOriginalConstructor()