Passed
Push — master ( 5471a5...321c34 )
by Radu
01:44
created

Request::getSuffix()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
namespace WebServCo\Framework\Libraries;
3
4
final class Request extends \WebServCo\Framework\AbstractRequest
5
{
6
    public function __construct($settings, $server, $post = [])
7
    {
8
        parent::__construct($settings);
9
        
10
        $this->init($server, $post);
11
    }
12
    
13
    public function getMethod()
14
    {
15
        return $this->method;
16
    }
17
    
18
    public function getArgs()
19
    {
20
        return $this->args;
21
    }
22
}
23