8000 Move command to Form Component · symfony/symfony@d68b634 · GitHub
[go: up one dir, main page]

Skip to content

Commit d68b634

Browse files
committed
Move command to Form Component
1 parent 10610d3 commit d68b634

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/Resources/config/form.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
</service>
207207

208208
<!-- Commands -->
209-
<service id="form.command.debug" class="Symfony\Bundle\FrameworkBundle\Command\FormDebugCommand">
209+
<service id="form.command.debug" class="Symfony\Component\Form\Command\FormDebugCommand">
210210
<tag name="console.command" command="debug:form" />
211211
<argument type="service" id="form.registry" />
212212
</service>

src/Symfony/Bundle/FrameworkBundle/Command/FormDebugCommand.php renamed to src/Symfony/Component/Form/Command/FormDebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Bundle\FrameworkBundle\Command;
12+
namespace Symfony\Component\Form\Command;
1313

1414
use Symfony\Component\Console\Command\Command;
1515
use Symfony\Component\Console\Helper\TableSeparator;

0 commit comments

Comments
 (0)
0