AllAction   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\Component\Actions\Action;
4
5
use Thruster\Component\Actions\ExecutorLessInterface;
6
7
/**
8
 * Class AllAction
9
 *
10
 * @package Thruster\Component\Actions\Action
11
 * @author  Aurimas Niekis <[email protected]>
12
 */
13
class AllAction extends BaseAction implements ExecutorLessInterface
14
{
15
    /**
16
     * @inheritDoc
17
     */
18 1
    public function getName() : string
19
    {
20 1
        return 'thruster_all';
21
    }
22
}
23