DoctrinePersistAction::getName()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 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