Completed
Pull Request — master (#149)
by Paul
03:16 queued 14s
created

Response::setBody()   B

Complexity

Conditions 5
Paths 3

Size

Total Lines 14
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 14
rs 8.8571
cc 5
eloc 8
nc 3
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\Response as SymfonyHttpResponse;
14
15
/**
16
 *
17
 * @author Paul Dragoonis <[email protected]>
18
 * @author Vítor Brandão <[email protected]>
19
 */
20
class Response extends SymfonyHttpResponse
21
{
22
23
}
24