Passed
Pull Request — master (#9)
by Divine
12:53 queued 03:00
created

DumpArrayTest::jsonSerialize()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of Flight Routing.
7
 *
8
 * PHP version 7.2 and above required
9
 *
10
 * @author    Divine Niiquaye Ibok <[email protected]>
11
 * @copyright 2019 Biurad Group (https://biurad.com/)
12
 * @license   https://opensource.org/licenses/BSD-3-Clause License
13
 *
14
 * For the full copyright and license information, please view the LICENSE
15
 * file that was distributed with this source code.
16
 */
17
18
namespace Flight\Routing\Tests\Helpers;
19
20
use JsonSerializable;
21
22
class DumpArrayTest implements JsonSerializable
23
{
24
    /**
25
     * {@inheritdoc}
26
     */
27
    public function jsonSerialize()
28
    {
29
        return ['An array return from', 'JsonSerializable'];
30
    }
31
}
32