Completed
Pull Request — master (#149)
by Paul
03:20
created

Request::withAddedHeader()   B

Complexity

Conditions 5
Paths 6

Size

Total Lines 24
Code Lines 13

Duplication

Lines 24
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 24
loc 24
rs 8.5126
cc 5
eloc 13
nc 6
nop 2
1
<?php
2
/**
3
 * This file is part of the PPI Framework.
4
 *
5
 * @copyright  Copyright (c) 2011-2015 Paul Dragoonis <[email protected]>
6
 * @license    http://opensource.org/licenses/mit-license.php MIT
7
 *
8
 * @link       http://www.ppi.io
9
 */
10
11
namespace PPI\Framework\Http;
12
13
use Symfony\Component\HttpFoundation\Request as SymfonyHttpRequest;
14
15
/**
16
 * HTTP Request encapsulation.
17
 *
18
 * @author Paul Dragoonis <[email protected]>
19
 * @author Vítor Brandão <[email protected]>
20
 */
21
class Request extends SymfonyHttpRequest
22
{
23
24
}
25