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

Request::withRequestTarget()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 13
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 13
rs 9.4286
cc 2
eloc 7
nc 2
nop 1
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