Passed
Push — master ( e04bc8...d279ac )
by Anton
02:48
created

JobRegistry::getHandler()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 0
c 1
b 1
f 0
dl 0
loc 2
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
/**
4
 * Spiral Framework.
5
 *
6
 * @license   MIT
7
 * @author    Anton Titov (Wolfy-J)
8
 */
9
declare(strict_types=1);
10
11
namespace Spiral\Jobs;
12
13
class JobRegistry implements HandlerRegistryInterface, SerializerRegistryInterface
14
{
15
    public function getHandler(string $jobType): HandlerInterface
16
    {
17
        // TODO: Implement getHandler() method.
18
    }
19
20
    public function getSerializer(string $jobType): SerializerInterface
21
    {
22
        // TODO: Implement getSerializer() method.
23
    }
24
}
25