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

URLEncodedRequestFactory::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 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