@@ -128,9 +128,9 @@ public function getHttpClient(): HttpClient
128
128
}
129
129
130
130
/**
131
- * Returns the Http factory for the purpose of filling the standard .
131
+ * Returns the standard Request factory .
132
132
* @param ContainerInterface $container The container used to resolve dependencies
133
- * @return RequestFactoryInterface
133
+ * @return RequestFactoryInterface The standard Request factory
134
134
*/
135
135
public function getRequestFactory (ContainerInterface $ container ): RequestFactoryInterface
136
136
{
@@ -140,43 +140,47 @@ public function getRequestFactory(ContainerInterface $container): RequestFactory
140
140
/**
141
141
* Returns the standard Response Factory.
142
142
* @param ContainerInterface $container The container used to resolve dependencies
143
- * @return ResponseFactoryInterface
143
+ * @return ResponseFactoryInterface The standard Response Factory
144
144
*/
145
145
public function getResponseFactory (ContainerInterface $ container ): ResponseFactoryInterface
146
146
{
147
147
return $ container ->get (HttpFactoryInterface::class);
148
148
}
149
149
150
150
/**
151
+ * Returns the standard ServerRequest Factory.
151
152
* @param ContainerInterface $container The container used to resolve dependencies
152
- * @return ServerRequestFactoryInterface
153
+ * @return ServerRequestFactoryInterface The standard ServerRequest Factory
153
154
*/
154
155
public function getServerRequestFactory (ContainerInterface $ container ): ServerRequestFactoryInterface
155
156
{
156
157
return $ container ->get (HttpFactoryInterface::class);
157
158
}
158
159
159
160
/**
161
+ * Returns the standard Stream Factory.
160
162
* @param ContainerInterface $container The container used to resolve dependencies
161
- * @return StreamFactoryInterface
163
+ * @return StreamFactoryInterface The standard Stream Factory
162
164
*/
163
165
public function getStreamFactory (ContainerInterface $ container ): StreamFactoryInterface
164
166
{
165
167
return $ container ->get (HttpFactoryInterface::class);
166
168
}
167
169
168
170
/**
171
+ * Returns the standard UploadedFile Factory.
169
172
* @param ContainerInterface $container The container used to resolve dependencies
170
- * @return UploadedFileFactoryInterface
173
+ * @return UploadedFileFactoryInterface The standard UploadedFile Factory
171
174
*/
172
175
public function getUploadedFileFactory (ContainerInterface $ container ): UploadedFileFactoryInterface
173
176
{
174
177
return $ container ->get (HttpFactoryInterface::class);
175
178
}
176
179
177
180
/**
181
+ * Returns the standard Uri Factory.
178
182
* @param ContainerInterface $container The container used to resolve dependencies
179
- * @return UriFactoryInterface
183
+ * @return UriFactoryInterface The standard Uri Factory
180
184
*/
181
185
public function getUriFactory (ContainerInterface $ container ): UriFactoryInterface
182
186
{
0 commit comments