Skip to content

Commit 2575f9d

Browse files
committed
Add missing documentation
1 parent 2d61bcb commit 2575f9d

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

src/ApplicationProvider.php

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ public function getHttpClient(): HttpClient
128128
}
129129

130130
/**
131-
* Returns the Http factory for the purpose of filling the standard.
131+
* Returns the standard Request factory.
132132
* @param ContainerInterface $container The container used to resolve dependencies
133-
* @return RequestFactoryInterface
133+
* @return RequestFactoryInterface The standard Request factory
134134
*/
135135
public function getRequestFactory(ContainerInterface $container): RequestFactoryInterface
136136
{
@@ -140,43 +140,47 @@ public function getRequestFactory(ContainerInterface $container): RequestFactory
140140
/**
141141
* Returns the standard Response Factory.
142142
* @param ContainerInterface $container The container used to resolve dependencies
143-
* @return ResponseFactoryInterface
143+
* @return ResponseFactoryInterface The standard Response Factory
144144
*/
145145
public function getResponseFactory(ContainerInterface $container): ResponseFactoryInterface
146146
{
147147
return $container->get(HttpFactoryInterface::class);
148148
}
149149

150150
/**
151+
* Returns the standard ServerRequest Factory.
151152
* @param ContainerInterface $container The container used to resolve dependencies
152-
* @return ServerRequestFactoryInterface
153+
* @return ServerRequestFactoryInterface The standard ServerRequest Factory
153154
*/
154155
public function getServerRequestFactory(ContainerInterface $container): ServerRequestFactoryInterface
155156
{
156157
return $container->get(HttpFactoryInterface::class);
157158
}
158159

159160
/**
161+
* Returns the standard Stream Factory.
160162
* @param ContainerInterface $container The container used to resolve dependencies
161-
* @return StreamFactoryInterface
163+
* @return StreamFactoryInterface The standard Stream Factory
162164
*/
163165
public function getStreamFactory(ContainerInterface $container): StreamFactoryInterface
164166
{
165167
return $container->get(HttpFactoryInterface::class);
166168
}
167169

168170
/**
171+
* Returns the standard UploadedFile Factory.
169172
* @param ContainerInterface $container The container used to resolve dependencies
170-
* @return UploadedFileFactoryInterface
173+
* @return UploadedFileFactoryInterface The standard UploadedFile Factory
171174
*/
172175
public function getUploadedFileFactory(ContainerInterface $container): UploadedFileFactoryInterface
173176
{
174177
return $container->get(HttpFactoryInterface::class);
175178
}
176179

177180
/**
181+
* Returns the standard Uri Factory.
178182
* @param ContainerInterface $container The container used to resolve dependencies
179-
* @return UriFactoryInterface
183+
* @return UriFactoryInterface The standard Uri Factory
180184
*/
181185
public function getUriFactory(ContainerInterface $container): UriFactoryInterface
182186
{

0 commit comments

Comments
 (0)