RpcResultNull   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 8
ccs 0
cts 2
cp 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getResult() 0 3 1
1
<?php
2
3
/**
4
 * Created by PhpStorm.
5
 * Project: json-rpc-server
6
 * User: sv
7
 * Date: 03.07.2020
8
 * Time: 15:32
9
 */
10
11
declare(strict_types=1);
12
13
namespace Onnov\JsonRpcServer\Result;
14
15
/**
16
 * Class RpcResultNull
17
 *
18
 * @package Onnov\JsonRpcServer\Result
19
 */
20
class RpcResultNull extends RpcResultAbstract
21
{
22
    /**
23
     * @return null
24
     */
25
    public function getResult()
26
    {
27
        return $this->result;
28
    }
29
}
30