1 | <?php |
||
31 | class Factory extends BaseFactory implements FactoryInterface |
||
32 | { |
||
33 | /** |
||
34 | * @inheritdoc |
||
35 | */ |
||
36 | 2 | public function createEncoder(ContainerInterface $container, EncoderOptions $encoderOptions = null) |
|
43 | |||
44 | /** |
||
45 | * @inheritdoc |
||
46 | */ |
||
47 | 4 | public function createHeadersChecker(CodecMatcherInterface $codecMatcher) |
|
51 | |||
52 | /** |
||
53 | * @inheritdoc |
||
54 | */ |
||
55 | 2 | public function createEnvironment(array $config = null) |
|
59 | |||
60 | /** |
||
61 | * @inheritdoc |
||
62 | */ |
||
63 | 3 | public function createRequest(EnvironmentInterface $environment) |
|
67 | |||
68 | /** |
||
69 | * @inheritdoc |
||
70 | */ |
||
71 | 2 | public function createQueryParametersParser() |
|
75 | } |
||
76 |