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