PropertyProcessorTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A createProcessor() 0 4 1
1
<?php
2
3
namespace ScayTrase\Api\Cruds\Tests\Unit\Controller\Update;
4
5
use ScayTrase\Api\Cruds\EntityProcessorInterface;
6
use ScayTrase\Api\Cruds\PropertyAccessProcessor;
7
use ScayTrase\Api\Cruds\Tests\Unit\Controller\UpdateControllerTest;
8
9
final class PropertyProcessorTest extends UpdateControllerTest
10
{
11
    /** {@inheritdoc} */
12
    protected function createProcessor(string $fqcn): EntityProcessorInterface
13
    {
14
        return new PropertyAccessProcessor();
15
    }
16
}
17