Payload::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
crap 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Resque\Dispatchers;
6
7
use Psr\Container\ContainerInterface;
8
use Psr\EventDispatcher\TaskProcessorInterface;
9
use Resque\Interfaces\Dispatcher;
10
11
class Payload implements Dispatcher
12
{
13
    private $taskProcessor;
14
    private $serviceLocator;
15
16 1
    public function __construct(ContainerInterface $serviceLocator, TaskProcessorInterface $taskProcessor)
17
    {
18 1
        $this->serviceLocator = $serviceLocator;
19 1
        $this->taskProcessor = $taskProcessor;
20 1
    }
21
22 1
    public function dispatch(string $className, array $payload): array
23
    {
24 1
        $task = $this->serviceLocator->get($className);
25 1
        $task->setPayload($payload);
26 1
        $task = $this->taskProcessor->process($task);
27
28 1
        return $task->/** @scrutinizer ignore-call */getPayload();
29
    }
30
}
31