Total Complexity | 6 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class ClientHttpManager extends ApplicationProvider |
||
9 | { |
||
10 | /** |
||
11 | * @var string $method |
||
12 | */ |
||
13 | protected $method; |
||
14 | |||
15 | /** |
||
16 | * RequestHttpManager constructor. |
||
17 | * |
||
18 | * @param ApplicationContracts $app |
||
19 | */ |
||
20 | public function __construct(ApplicationContracts $app) |
||
21 | { |
||
22 | parent::__construct($app); |
||
23 | |||
24 | $this->method = httpMethod(); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * http data resolve |
||
29 | * |
||
30 | * @return mixed |
||
31 | */ |
||
32 | public function resolve() |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * get http method |
||
47 | * |
||
48 | * @return mixed |
||
49 | */ |
||
50 | public function getMethod() |
||
53 | } |
||
54 | |||
55 | } |