Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Command/QueueBus.php')
-rw-r--r--lib/private/Command/QueueBus.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Command/QueueBus.php b/lib/private/Command/QueueBus.php
index 275435782be..2ca8f948b69 100644
--- a/lib/private/Command/QueueBus.php
+++ b/lib/private/Command/QueueBus.php
@@ -56,7 +56,7 @@ class QueueBus implements IBus {
if ($command instanceof ICommand) {
// ensure the command can be serialized
$serialized = serialize($command);
- if(strlen($serialized) > 4000) {
+ if (strlen($serialized) > 4000) {
throw new \InvalidArgumentException('Trying to push a command which serialized form can not be stored in the database (>4000 character)');
}
$unserialized = unserialize($serialized);