Completed
Pull Request — master (#15)
by Pavel
14:19
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\Create;
4
5
use ScayTrase\Api\Cruds\PropertyAccessProcessor;
6
use ScayTrase\Api\Cruds\Tests\Unit\Controller\CreateControllerTest;
7
8
class PropertyProcessorTest extends CreateControllerTest
9
{
10
    /** {@inheritdoc} */
11
    protected function createProcessor($fqcn)
12
    {
13
        return new PropertyAccessProcessor();
14
    }
15
}
16