Cli   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getUri() 0 4 1
A getMethod() 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