AdapterPropertyTest::createProperty()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

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