Completed
Push — output_formatting ( 5c6062...211baf )
by Emlyn
04:17 queued 01:36
created

Cli   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 5
lcom 0
cbo 0
dl 0
loc 38
ccs 0
cts 10
cp 0
rs 10
c 1
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getUri() 0 4 1
A getMethod() 0 4 1
A getHeaders() 0 4 1
A hasHeader() 0 4 1
A getHeader() 0 4 1
1
<?php
2
/**
3
 * @package    Fuel\Foundation
4
 * @version    2.0
5
 * @author     Fuel Development Team
6
 * @license    MIT License
7
 * @copyright  2010 - 2017 Fuel Development Team
8
 * @link       http://fuelphp.com
9
 */
10
11
declare(strict_types=1);
12
13
namespace Fuel\Foundation\Request;
14
15
use Psr\Http\Message\UriInterface;
16
17
class Cli implements RequestInterface
18
{
19
	public function getUri() : UriInterface
20
	{
21
		// TODO: Implement getUri() method.
22
	}
23
24
	public function getMethod() : string
25
	{
26
		// TODO: Implement getMethod() method.
27
	}
28
29
	public function getHeaders()
30
	{
31
		// TODO: Implement getHeaders() method.
32
	}
33
34
	/**
35
	 * @param string $header
36
	 *
37
	 * @return bool
38
	 */
39
	public function hasHeader($header)
40
	{
41
		// TODO: Implement hasHeader() method.
42
	}
43
44
	/**
45
	 * @param string $header Case-insensitive header field name.
46
	 *
47
	 * @return string[] An array of string values as provided for the given
48
	 *    header. If the header does not appear in the message, this method MUST
49
	 *    return an empty array.
50
	 */
51
	public function getHeader($header)
52
	{
53
		// TODO: Implement getHeader() method.
54
}}
55