AbstractAction   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 0
dl 0
loc 10
ccs 0
cts 4
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 4 1
1
<?php
2
3
namespace Majora\Framework\Domain\Action;
4
5
use Majora\Framework\Serializer\Model\SerializableInterface;
6
7
/**
8
 * Abstract action implementation
9
 */
10
abstract class AbstractAction implements ActionInterface
11
{
12
    /**
13
     * Initialisation function
14
     */
15
    public function init()
16
    {
17
        return $this;
18
    }
19
}
20