File tree Expand file tree Collapse file tree 5 files changed +7
-15
lines changed Expand file tree Collapse file tree 5 files changed +7
-15
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,6 @@ class RepeatedPass implements CompilerPassInterface
26
26
*/
27
27
private $ repeat = false ;
28
28
29
- /**
30
- * @var RepeatablePassInterface[]
31
- */
32
29
private $ passes ;
33
30
34
31
/**
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ public function __construct(ParameterBagInterface $parameterBag = null)
109
109
* If you are not using the loaders and therefore don't want
110
110
* to depend on the Config component, set this flag to false.
111
111
*
112
- * @param bool $track true if you want to track resources, false otherwise
112
+ * @param bool $track True if you want to track resources, false otherwise
113
113
*/
114
114
public function setResourceTracking ($ track )
115
115
{
@@ -119,7 +119,7 @@ public function setResourceTracking($track)
119
119
/**
120
120
* Checks if resources are tracked.
121
121
*
122
- * @return bool true if resources are tracked, false otherwise
122
+ * @return bool true If resources are tracked, false otherwise
123
123
*/
124
124
public function isTrackingResources ()
125
125
{
Original file line number Diff line number Diff line change @@ -38,15 +38,11 @@ class PhpDumper extends Dumper
38
38
{
39
39
/**
40
40
* Characters that might appear in the generated variable name as first character.
41
- *
42
- * @var string
43
41
*/
44
42
const FIRST_CHARS = 'abcdefghijklmnopqrstuvwxyz ' ;
45
43
46
44
/**
47
45
* Characters that might appear in the generated variable name as any but the first character.
48
- *
49
- * @var string
50
46
*/
51
47
const NON_FIRST_CHARS = 'abcdefghijklmnopqrstuvwxyz0123456789_ ' ;
52
48
Original file line number Diff line number Diff line change @@ -25,11 +25,10 @@ interface InstantiatorInterface
25
25
/**
26
26
* Instantiates a proxy object.
27
27
*
28
- * @param ContainerInterface $container the container from which the service is being requested
29
- * @param Definition $definition the definition of the requested service
30
- * @param string $id identifier of the requested service
31
- * @param callable $realInstantiator zero-argument callback that is capable of producing the real
32
- * service instance
28
+ * @param ContainerInterface $container The container from which the service is being requested
29
+ * @param Definition $definition The definition of the requested service
30
+ * @param string $id Identifier of the requested service
31
+ * @param callable $realInstantiator Zero-argument callback that is capable of producing the real service instance
33
32
*
34
33
* @return object
35
34
*/
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public function isProxyCandidate(Definition $definition);
31
31
* Generates the code to be used to instantiate a proxy in the dumped factory code.
32
32
*
33
33
* @param Definition $definition
34
- * @param string $id service identifier
34
+ * @param string $id Service identifier
35
35
*
36
36
* @return string
37
37
*/
You can’t perform that action at this time.
0 commit comments