Merge pull request #24429 from nextcloud/3rdparty/closure
[3rdparty] Migrate to Opis/Closure
This commit is contained in:
commit
fbc06d39c7
2
3rdparty
2
3rdparty
|
@ -1 +1 @@
|
|||
Subproject commit 8d7a96cde06a0357ce5805e00773b576d7595ef8
|
||||
Subproject commit 8f03ccac97331ff781340d76a3f4a49a017d6ae1
|
|
@ -3281,6 +3281,21 @@
|
|||
<code>''</code>
|
||||
</TypeDoesNotContainType>
|
||||
</file>
|
||||
<file src="lib/private/Command/ClosureJob.php">
|
||||
<UndefinedFunction occurrences="1">
|
||||
<code>\Opis\Closure\unserialize($serializedCallable)</code>
|
||||
</UndefinedFunction>
|
||||
</file>
|
||||
<file src="lib/private/Command/CommandJob.php">
|
||||
<UndefinedFunction occurrences="1">
|
||||
<code>\Opis\Closure\unserialize($serializedCommand)</code>
|
||||
</UndefinedFunction>
|
||||
</file>
|
||||
<file src="lib/private/Command/CronBus.php">
|
||||
<UndefinedFunction occurrences="1">
|
||||
<code>\Opis\Closure\serialize($command)</code>
|
||||
</UndefinedFunction>
|
||||
</file>
|
||||
<file src="lib/private/Comments/Comment.php">
|
||||
<ImplementedReturnTypeMismatch occurrences="1">
|
||||
<code>\DateTime|null</code>
|
||||
|
|
|
@ -23,12 +23,10 @@
|
|||
namespace OC\Command;
|
||||
|
||||
use OC\BackgroundJob\QueuedJob;
|
||||
use SuperClosure\Serializer;
|
||||
|
||||
class ClosureJob extends QueuedJob {
|
||||
protected function run($serializedCallable) {
|
||||
$serializer = new Serializer();
|
||||
$callable = $serializer->unserialize($serializedCallable);
|
||||
$callable = \Opis\Closure\unserialize($serializedCallable);
|
||||
if (is_callable($callable)) {
|
||||
$callable();
|
||||
} else {
|
||||
|
|
|
@ -30,7 +30,7 @@ use OCP\Command\ICommand;
|
|||
*/
|
||||
class CommandJob extends QueuedJob {
|
||||
protected function run($serializedCommand) {
|
||||
$command = unserialize($serializedCommand);
|
||||
$command = \Opis\Closure\unserialize($serializedCommand);
|
||||
if ($command instanceof ICommand) {
|
||||
$command->handle();
|
||||
} else {
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
namespace OC\Command;
|
||||
|
||||
use OCP\Command\ICommand;
|
||||
use SuperClosure\Serializer;
|
||||
|
||||
class CronBus extends AsyncBus {
|
||||
/**
|
||||
|
@ -68,10 +67,9 @@ class CronBus extends AsyncBus {
|
|||
*/
|
||||
private function serializeCommand($command) {
|
||||
if ($command instanceof \Closure) {
|
||||
$serializer = new Serializer();
|
||||
return $serializer->serialize($command);
|
||||
return \Opis\Closure\serialize($command);
|
||||
} elseif (is_callable($command) or $command instanceof ICommand) {
|
||||
return serialize($command);
|
||||
return \Opis\Closure\serialize($command);
|
||||
} else {
|
||||
throw new \InvalidArgumentException('Invalid command');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue