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

resultDispatchingDataProvider()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 4
c 1
b 1
f 0
dl 0
loc 14
rs 10
cc 1
nc 1
nop 0
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