Completed
Push — master ( 0f15f1...06dce9 )
by Pavel
09:44
created

PropertyProcessorTest   A

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\PropertyAccessProcessor;
6
use ScayTrase\Api\Cruds\Tests\Unit\Controller\UpdateControllerTest;
7
8
class PropertyProcessorTest extends UpdateControllerTest
9
{
10
    /** {@inheritdoc} */
11
    protected function createProcessor($fqcn)
12
    {
13
        return new PropertyAccessProcessor();
14
    }
15
}
16