summaryrefslogtreecommitdiffstats
path: root/lib/private/AppFramework/Utility
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-03-07 16:50:18 +0100
committerJoas Schilling <coding@schilljs.com>2018-03-07 16:50:18 +0100
commit1dd40b1f45cb7c2002bb574f779a411ec8050530 (patch)
tree20311f1fc252dbd144def7e1454d8fcc0f51fcab /lib/private/AppFramework/Utility
parent559978c50eb837f6168a84bd536ff0824ad88d78 (diff)
downloadnextcloud-server-1dd40b1f45cb7c2002bb574f779a411ec8050530.tar.gz
nextcloud-server-1dd40b1f45cb7c2002bb574f779a411ec8050530.zip
Single quotes
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/AppFramework/Utility')
-rw-r--r--lib/private/AppFramework/Utility/SimpleContainer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/AppFramework/Utility/SimpleContainer.php b/lib/private/AppFramework/Utility/SimpleContainer.php
index de2f496c4a7..e96f24ed284 100644
--- a/lib/private/AppFramework/Utility/SimpleContainer.php
+++ b/lib/private/AppFramework/Utility/SimpleContainer.php
@@ -67,7 +67,7 @@ class SimpleContainer extends Container implements IContainer {
try {
$parameters[] = $this->query($resolveName);
} catch (\Exception $e) {
- if (class_exists("PHPUnit_Framework_AssertionFailedError", false) &&
+ if (class_exists('PHPUnit_Framework_AssertionFailedError', false) &&
$e instanceof \PHPUnit_Framework_AssertionFailedError) {
// Easier debugging of "Your test case is not allowed to access the database."
throw $e;