diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2023-09-30 22:46:32 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2023-09-30 22:46:32 +0200 |
commit | 19ec0ee81b6e7162128f4ffcf039ded25e05406d (patch) | |
tree | 190fc36307273dec841bbccaac02b8de4d0aa252 | |
parent | d215d8091699b39763c6c5d23b5125b7734c19f7 (diff) | |
download | nextcloud-server-19ec0ee81b6e7162128f4ffcf039ded25e05406d.tar.gz nextcloud-server-19ec0ee81b6e7162128f4ffcf039ded25e05406d.zip |
chore: rename serializedClosure to argument to align with parent class
To make psalm happy ;)
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
-rw-r--r-- | lib/private/Command/ClosureJob.php | 4 | ||||
-rw-r--r-- | lib/private/Command/CommandJob.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Command/ClosureJob.php b/lib/private/Command/ClosureJob.php index 180c5a33ec5..7216bcc762a 100644 --- a/lib/private/Command/ClosureJob.php +++ b/lib/private/Command/ClosureJob.php @@ -26,8 +26,8 @@ use OC\BackgroundJob\QueuedJob; use Laravel\SerializableClosure\SerializableClosure as LaravelClosure; class ClosureJob extends QueuedJob { - protected function run($serializedCallable) { - $callable = unserialize($serializedCallable, [LaravelClosure::class]); + protected function run($argument) { + $callable = unserialize($argument, [LaravelClosure::class]); $callable = $callable->getClosure(); if (is_callable($callable)) { $callable(); diff --git a/lib/private/Command/CommandJob.php b/lib/private/Command/CommandJob.php index 5b267162c81..e34ffe9440b 100644 --- a/lib/private/Command/CommandJob.php +++ b/lib/private/Command/CommandJob.php @@ -29,8 +29,8 @@ use OCP\Command\ICommand; * Wrap a command in the background job interface */ class CommandJob extends QueuedJob { - protected function run($serializedCommand) { - $command = unserialize($serializedCommand); + protected function run($argument) { + $command = unserialize($argument); if ($command instanceof ICommand) { $command->handle(); } else { |