Completed
Branch master (73f336)
by John
01:59
created

URLEncodedRequestFactory   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 5
c 0
b 0
f 0
wmc 1
lcom 0
cbo 2
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace LunixREST\Request\RequestFactory;
3
4
use LunixREST\Request\BodyParser\URLEncodedBodyParser;
5
use LunixREST\Request\URLParser\URLParser;
6
7
class URLEncodedRequestFactory extends GenericRequestFactory {
8
    public function __construct(URLParser $URLParser) {
9
        parent::__construct($URLParser, new URLEncodedBodyParser());
10
    }
11
}
12