File tree Expand file tree Collapse file tree 1 file changed +27
-28
lines changed
src/Symfony/Component/Debug/Tests/Fixtures Expand file tree Collapse file tree 1 file changed +27
-28
lines changed Original file line number Diff line number Diff line change 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
+ }
You can’t perform that action at this time.
0 commit comments