Skip to content

Commit e1a4f85

Browse files
fix cs
1 parent 5ec6098 commit e1a4f85

15 files changed

+15
-15
lines changed

Definition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ public function getMethodCalls()
400400
/**
401401
* Sets the definition templates to conditionally apply on the current definition, keyed by parent interface/class.
402402
*
403-
* @param $instanceof ChildDefinition[]
403+
* @param ChildDefinition[] $instanceof
404404
*
405405
* @return $this
406406
*/

Dumper/PhpDumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1367,7 +1367,7 @@ public function getParameterBag()
13671367
/*{$this->docStar}
13681368
* Computes a dynamic parameter.
13691369
*
1370-
* @param string The name of the dynamic parameter to load
1370+
* @param string \$name The name of the dynamic parameter to load
13711371
*
13721372
* @return mixed The value of the dynamic parameter
13731373
*

Loader/Configurator/Traits/LazyTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ trait LazyTrait
1616
/**
1717
* Sets the lazy flag of this service.
1818
*
19-
* @param bool $lazy
19+
* @param bool|string $lazy A FQCN to derivate the lazy proxy from or `true` to make it extend from the definition's class
2020
*
2121
* @return $this
2222
*/

Tests/Fixtures/php/services10.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public function getParameterBag()
115115
/**
116116
* Computes a dynamic parameter.
117117
*
118-
* @param string The name of the dynamic parameter to load
118+
* @param string $name The name of the dynamic parameter to load
119119
*
120120
* @return mixed The value of the dynamic parameter
121121
*

Tests/Fixtures/php/services12.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public function getParameterBag()
122122
/**
123123
* Computes a dynamic parameter.
124124
*
125-
* @param string The name of the dynamic parameter to load
125+
* @param string $name The name of the dynamic parameter to load
126126
*
127127
* @return mixed The value of the dynamic parameter
128128
*

Tests/Fixtures/php/services19.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function getParameterBag()
132132
/**
133133
* Computes a dynamic parameter.
134134
*
135-
* @param string The name of the dynamic parameter to load
135+
* @param string $name The name of the dynamic parameter to load
136136
*
137137
* @return mixed The value of the dynamic parameter
138138
*

Tests/Fixtures/php/services26.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public function getParameterBag()
138138
/**
139139
* Computes a dynamic parameter.
140140
*
141-
* @param string The name of the dynamic parameter to load
141+
* @param string $name The name of the dynamic parameter to load
142142
*
143143
* @return mixed The value of the dynamic parameter
144144
*

Tests/Fixtures/php/services8.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public function getParameterBag()
102102
/**
103103
* Computes a dynamic parameter.
104104
*
105-
* @param string The name of the dynamic parameter to load
105+
* @param string $name The name of the dynamic parameter to load
106106
*
107107
* @return mixed The value of the dynamic parameter
108108
*

Tests/Fixtures/php/services9_as_files.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ class ProjectServiceContainer extends Container
441441
/**
442442
* Computes a dynamic parameter.
443443
*
444-
* @param string The name of the dynamic parameter to load
444+
* @param string $name The name of the dynamic parameter to load
445445
*
446446
* @return mixed The value of the dynamic parameter
447447
*

Tests/Fixtures/php/services9_compiled.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ public function getParameterBag()
432432
/**
433433
* Computes a dynamic parameter.
434434
*
435-
* @param string The name of the dynamic parameter to load
435+
* @param string $name The name of the dynamic parameter to load
436436
*
437437
* @return mixed The value of the dynamic parameter
438438
*

0 commit comments

Comments
 (0)