Command   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
eloc 3
c 2
b 1
f 0
dl 0
loc 7
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A setProjectKey() 0 3 1
1
<?php
2
3
namespace RedirectionIO\Client\Sdk\Command;
4
5
abstract class Command implements CommandInterface
6
{
7
    protected $projectKey;
8
9
    public function setProjectKey(string $projectKey)
10
    {
11
        $this->projectKey = $projectKey;
12
    }
13
}
14