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

Request::validateMethod()   B

Complexity

Conditions 5
Paths 4

Size

Total Lines 19
Code Lines 12

Duplication

Lines 6
Ratio 31.58 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 6
loc 19
rs 8.8571
cc 5
eloc 12
nc 4
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