Completed
Push — master ( 205443...4952c2 )
by Emlyn
07:58
created

Cli::getMethod()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2
Metric Value
dl 0
loc 4
ccs 0
cts 2
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 2
1
<?php
2
/**
3
 * @package    Fuel\Foundation
4
 * @version    2.0
5
 * @author     Fuel Development Team
6
 * @license    MIT License
7
 * @copyright  2010 - 2016 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