Render   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 5 1
1
<?php
2
namespace FMUP\Dispatcher\Plugin;
3
4
class Render extends \FMUP\Dispatcher\Plugin
5
{
6
    protected $name = 'Render';
7
8
    /**
9
     * Can be used to apply something on request object
10
     */
11 1
    public function handle()
12
    {
13 1
        $this->getResponse()->send();
14 1
        return $this;
15
    }
16
}
17