8000 Fix fabbot · symfony/symfony@7fd5331 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7fd5331

Browse files
committed
Fix fabbot
1 parent fdc2197 commit 7fd5331

File tree

1 file changed

+27
-28
lines changed

1 file changed

+27
-28
lines changed
Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
1-
<?php
2-
3-
namespace Symfony\Component\Debug\Tests\Fixtures;
4-
5-
class ClassWithAnnotatedParameters
6-
{
7-
/**
8-
* @param string $foo This is a foo parameter.
9-
*/
10-
public function fooMethod(string $foo)
11-
{
12-
}
13-
14-
/**
15-
* @param string $bar parameter not implemented yet
16-
*/
17-
public function barMethod(/** string $bar = null */)
18-
{
19-
}
20-
21-
22-
/**
23-
* @param Quz $quz parameter not implemented yet
24-
*/
25-
public function quzMethod(/** Quz $quz = null */)
26-
{
27-
}
28-
}
1+
<?php
2+
3+
namespace Symfony\Component\Debug\Tests\Fixtures;
4+
5+
class ClassWithAnnotatedParameters
6+
{
7+
/**
8+
* @param string $foo This is a foo parameter.
9+
*/
10+
public function fooMethod(string $foo)
11+
{
12+
}
13+
14+
/**
15+
* @param string $bar parameter not implemented yet
16+
*/
17+
public function barMethod(/* string $bar = null */)
18+
{
19+
}
20+
21+
/**
22+
* @param Quz $quz parameter not implemented yet
23+
*/
24+
public function quzMethod(/* Quz $quz = null */)
25+
{
26+
}
27+
}

0 commit comments

Comments
 (0)
0