Completed
Push — refactor ( 605953...849f8a )
by Bogdan
01:16
created

ObjectMapTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 7
c 0
b 0
f 0
wmc 1
lcom 0
cbo 2
rs 10
1
<?php declare(strict_types=1);
2
3
/*
4
 * This file is part of the pinepain/php-object-maps PHP library.
5
 *
6
 * Copyright (c) 2016-2017 Bogdan Padalko <[email protected]>
7
 *
8
 * Licensed under the MIT license: http://opensource.org/licenses/MIT
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code or visit http://opensource.org/licenses/MIT
12
 */
13
14
15
namespace Pinepain\ObjectMaps\Tests;
16
17
18
use Pinepain\ObjectMaps\ObjectMap;
19
use Pinepain\ObjectMaps\ObjectMapInterface;
20
21
22
class ObjectMapTest extends AbstractObjectMapInterfaceTest
23
{
24
    public function buildMap(int $behavior = ObjectMapInterface::DEFAULT)
25
    {
26
        return new ObjectMap($behavior);
27
    }
28
}
29