PingGet   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 1
cbo 1
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A performAction() 0 4 1
1
<?php
2
3
4
namespace App\Actions\Ping;
5
6
7
use App\Lib\Slime\RestAction\ApiAction;
8
9
class PingGet extends ApiAction
10
{
11
    protected function performAction()
12
    {
13
        $this->payload = "Pong";
14
    }
15
}