Skip to content

Commit f02b701

Browse files
Cleanup @return annotations
1 parent bf1d590 commit f02b701

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Console/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function __construct(KernelInterface $kernel)
4747
/**
4848
* Gets the Kernel associated with this Console.
4949
*
50-
* @return KernelInterface A KernelInterface instance
50+
* @return KernelInterface
5151
*/
5252
public function getKernel()
5353
{

KernelBrowser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function getKernel()
6767
/**
6868
* Gets the profile associated with the current Response.
6969
*
70-
* @return HttpProfile|false|null A Profile instance
70+
* @return HttpProfile|false|null
7171
*/
7272
public function getProfile()
7373
{

Test/KernelTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected static function getKernelClass()
7373
/**
7474
* Boots the Kernel for this test.
7575
*
76-
* @return KernelInterface A KernelInterface instance
76+
* @return KernelInterface
7777
*/
7878
protected static function bootKernel(array $options = [])
7979
{
@@ -118,7 +118,7 @@ protected static function getContainer(): ContainerInterface
118118
* * environment
119119
* * debug
120120
*
121-
* @return KernelInterface A KernelInterface instance
121+
* @return KernelInterface
122122
*/
123123
protected static function createKernel(array $options = [])
124124
{

Test/WebTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected function tearDown(): void
3535
* @param array $options An array of options to pass to the createKernel method
3636
* @param array $server An array of server parameters
3737
*
38-
* @return KernelBrowser A KernelBrowser instance
38+
* @return KernelBrowser
3939
*/
4040
protected static function createClient(array $options = [], array $server = [])
4141
{

0 commit comments

Comments
 (0)