1 | <?php |
||
32 | class Factory extends BaseFactory implements FactoryInterface |
||
33 | { |
||
34 | /** |
||
35 | * @inheritdoc |
||
36 | 2 | */ |
|
37 | public function createEncoder(ContainerInterface $container, EncoderOptions $encoderOptions = null) |
||
44 | |||
45 | /** |
||
46 | * @inheritdoc |
||
47 | 4 | */ |
|
48 | public function createHeadersChecker(CodecMatcherInterface $codecMatcher) |
||
52 | |||
53 | /** |
||
54 | * @inheritdoc |
||
55 | 2 | */ |
|
56 | public function createEnvironment(array $config = null) |
||
60 | |||
61 | /** |
||
62 | * @inheritdoc |
||
63 | 3 | */ |
|
64 | public function createRequest(EnvironmentInterface $environment) |
||
68 | |||
69 | /** |
||
70 | * @inheritdoc |
||
71 | 2 | */ |
|
72 | public function createQueryParametersParser() |
||
76 | |||
77 | /** |
||
78 | * @inheritdoc |
||
79 | */ |
||
80 | public function createContainer(array $providers = []) |
||
87 | } |
||
88 |