Completed
Push — master ( 6e909e...c441c1 )
by Phil
03:17
created

StackAwareTrait   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 1
cbo 0
dl 0
loc 25
ccs 5
cts 5
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A middleware() 0 6 1
A getMiddlewareStack() 0 4 1
1
<?php
2
3
namespace League\Route\Middleware;
4
5
trait StackAwareTrait
6
{
7
    /**
8
     * @var callable[]
9
     */
10
    protected $middleware = [];
11
12
    /**
13
     * {@inheritdoc}
14
     */
15 42
    public function middleware(callable $middleware)
16
    {
17 42
        $this->middleware[] = $middleware;
18
19 42
        return $this;
20
    }
21
22
    /**
23
     * {@inheritdoc}
24
     */
25 45
    public function getMiddlewareStack()
26
    {
27 45
        return $this->middleware;
28
    }
29
}
30