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

Request::withHeader()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 19
Code Lines 11

Duplication

Lines 19
Ratio 100 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 19
loc 19
rs 9.2
cc 4
eloc 11
nc 4
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