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

StackAwareTrait::middleware()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
ccs 3
cts 3
cp 1
rs 9.4285
cc 1
eloc 3
nc 1
nop 1
crap 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