Skip to content

Commit 6c6f76f

Browse files
committed
fixed CS
1 parent 7ae5fe0 commit 6c6f76f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public function testAddServiceIdWithUnsupportedCharacters()
235235
$class = 'Symfony_DI_PhpDumper_Test_Unsupported_Characters';
236236
$container = new ContainerBuilder();
237237
$container->setParameter("'", 'oh-no');
238-
$container->register("foo*/oh-no", 'FooClass')->setPublic(true);
238+
$container->register('foo*/oh-no', 'FooClass')->setPublic(true);
239239
$container->register('bar$', 'FooClass')->setPublic(true);
240240
$container->register('bar$!', 'FooClass')->setPublic(true);
241241
$container->compile();

src/Symfony/Component/Form/FormInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ public function getErrors($deep = false, $flatten = true);
113113
* @return $this
114114
*
115115
* @throws Exception\AlreadySubmittedException If the form has already been submitted
116-
* @throws Exception\LogicException If the view data does not match the expected type
117-
* according to {@link FormConfigInterface::getDataClass}.
116+
* @throws Exception\LogicException if the view data does not match the expected type
117+
* according to {@link FormConfigInterface::getDataClass}
118118
* @throws Exception\RuntimeException If listeners try to call setData in a cycle or if
119119
* the form inherits data from its parent
120-
* @throws Exception\TransformationFailedException If the synchronization failed.
120+
* @throws Exception\TransformationFailedException if the synchronization failed
121121
*/
122122
public function setData($modelData);
123123

0 commit comments

Comments
 (0)