AdapterPropertyTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A createProperty() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace ProxyManagerTest\ProxyGenerator\RemoteObject\PropertyGenerator;
6
7
use Laminas\Code\Generator\PropertyGenerator;
8
use ProxyManager\ProxyGenerator\RemoteObject\PropertyGenerator\AdapterProperty;
9
use ProxyManagerTest\ProxyGenerator\PropertyGenerator\AbstractUniquePropertyNameTest;
10
11
/**
12
 * Tests for {@see \ProxyManager\ProxyGenerator\RemoteObject\PropertyGenerator\AdapterProperty}
13
 *
14
 * @covers \ProxyManager\ProxyGenerator\RemoteObject\PropertyGenerator\AdapterProperty
15
 * @group Coverage
16
 */
17
final class AdapterPropertyTest extends AbstractUniquePropertyNameTest
18
{
19
    /**
20
     * {@inheritDoc}
21
     */
22
    protected function createProperty() : PropertyGenerator
23
    {
24
        return new AdapterProperty();
25
    }
26
}
27