Passed
Push — master ( 361589...cb434a )
by Alex
04:25
created

SendRequestException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 1
eloc 5
c 1
b 1
f 0
dl 0
loc 22
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A resultDispatchingDataProvider() 0 14 1
1
<?php
2
namespace Mezon\CustomClient\Tests\SendRequestException;
3
4
use Mezon\CustomClient\Tests\BaseTestUtilities;
5
6
/**
7
 *
8
 * @psalm-suppress PropertyNotSetInConstructor
9
 */
10
class SendRequestException extends BaseTestUtilities
11
{
12
13
    /**
14
     * Data provider for the test testResultDispatching
15
     *
16
     * @return array testing data
17
     */
18
    public function resultDispatchingDataProvider(): array
19
    {
20
        return [
21
            [
22
                400
23
            ],
24
            [
25
                403
26
            ],
27
            [
28
                404
29
            ],
30
            [
31
                0
32
            ]
33
        ];
34
    }
35
}
36