DoctrinePersistAction   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 10
ccs 2
cts 2
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 4 1
1
<?php
2
3
namespace Thruster\Action\DoctrineActions;
4
5
use Thruster\Component\Actions\Action\BaseAction;
6
7
/**
8
 * Class DoctrinePersistAction
9
 *
10
 * @package Thruster\Action\DoctrineActions
11
 * @author  Aurimas Niekis <[email protected]>
12
 */
13
class DoctrinePersistAction extends BaseAction
14
{
15
    /**
16
     * @inheritDoc
17
     */
18 1
    public function getName() : string
19
    {
20 1
        return 'thruster_doctrine_persist_action';
21
    }
22
}
23