summaryrefslogtreecommitdiffstats
path: root/core/Command/Maintenance/Install.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-01-27 11:23:36 +0100
committerGitHub <noreply@github.com>2018-01-27 11:23:36 +0100
commited59019b0cc4ec61fce65a8eb02f814611b466b4 (patch)
tree29b1618a2618b7d4dba8f51626f5e3474e3d8a9c /core/Command/Maintenance/Install.php
parent513f70b1c3d342cd2215b6dab9bb0c6d511549ad (diff)
parenta661f043e1a8764cb7c795f50df77b830d3e352b (diff)
downloadnextcloud-server-ed59019b0cc4ec61fce65a8eb02f814611b466b4.tar.gz
nextcloud-server-ed59019b0cc4ec61fce65a8eb02f814611b466b4.zip
Merge pull request #8079 from nextcloud/remove-unneeded-semicolon-and-parentheses
Remove unneeded semicolon and parentheses
Diffstat (limited to 'core/Command/Maintenance/Install.php')
-rw-r--r--core/Command/Maintenance/Install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Maintenance/Install.php b/core/Command/Maintenance/Install.php
index be6a2da22c8..262def99c5f 100644
--- a/core/Command/Maintenance/Install.php
+++ b/core/Command/Maintenance/Install.php
@@ -90,7 +90,7 @@ class Install extends Command {
// ignore the OS X setup warning
if(count($errors) !== 1 ||
- (string)($errors[0]['error']) !== 'Mac OS X is not supported and Nextcloud will not work properly on this platform. Use it at your own risk! ') {
+ (string)$errors[0]['error'] !== 'Mac OS X is not supported and Nextcloud will not work properly on this platform. Use it at your own risk! ') {
return 1;
}
}