Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b0236ce

Browse filesBrowse files
committed
minor #22656 [DI][DX] Fix missing autoconfigure in container debug (Christopher Hertel)
This PR was merged into the 3.3-dev branch. Discussion ---------- [DI][DX] Fix missing autoconfigure in container debug | Q | A | ------------- | --- | Branch? | master | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Added missing autoconfigure flag for `debug:container` with service id. Commits ------- f50afad fixed missing autoconfigure in container debug
2 parents 5b6928d + f50afad commit b0236ce
Copy full SHA for b0236ce

File tree

7 files changed

+7
-0
lines changed
Filter options

7 files changed

+7
-0
lines changed

‎src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/TextDescriptor.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/TextDescriptor.php
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,7 @@ protected function describeContainerDefinition(Definition $definition, array $op
307307
$tableRows[] = array('Shared', $definition->isShared() ? 'yes' : 'no');
308308
$tableRows[] = array('Abstract', $definition->isAbstract() ? 'yes' : 'no');
309309
$tableRows[] = array('Autowired', $definition->isAutowired() ? 'yes' : 'no');
310+
$tableRows[] = array('Autoconfigured', $definition->isAutoconfigured() ? 'yes' : 'no');
310311

311312
if ($autowiringTypes = $definition->getAutowiringTypes(false)) {
312313
$tableRows[] = array('Autowiring Types', implode(', ', $autowiringTypes));

‎src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_with_definition_1.txt

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_with_definition_1.txt
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
Shared yes
1616
Abstract yes
1717
Autowired no
18+
Autoconfigured no
1819
Factory Class Full\Qualified\FactoryClass
1920
Factory Method get
2021
---------------- -----------------------------

‎src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_with_definition_2.txt

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/alias_with_definition_2.txt
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
Shared yes
1919
Abstract no
2020
Autowired no
21+
Autoconfigured no
2122
Required File /path/to/file
2223
Factory Service factory.service
2324
Factory Method get

‎src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/definition_1.txt

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/definition_1.txt
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
Shared yes
1111
Abstract yes
1212
Autowired no
13+
Autoconfigured no
1314
Factory Class Full\Qualified\FactoryClass
1415
Factory Method get
1516
---------------- -----------------------------

‎src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/definition_2.txt

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/definition_2.txt
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
Shared yes
1414
Abstract no
1515
Autowired no
16+
Autoconfigured no
1617
Required File /path/to/file
1718
Factory Service factory.service
1819
Factory Method get

‎src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/definition_arguments_1.txt

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/definition_arguments_1.txt
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
Shared yes
1111
Abstract yes
1212
Autowired no
13+
Autoconfigured no
1314
Factory Class Full\Qualified\FactoryClass
1415
Factory Method get
1516
 Arguments Service(definition2) 

‎src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/definition_arguments_2.txt

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/definition_arguments_2.txt
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
Shared yes
1414
Abstract no
1515
Autowired no
16+
Autoconfigured no
1617
Required File /path/to/file
1718
Factory Service factory.service
1819
Factory Method get

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.