Skip to content

Commit 53e4f5e

Browse files
committed
Fix CS
1 parent 5192cb6 commit 53e4f5e

7 files changed

+157
-157
lines changed

DataCollector/TwigDataCollector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function __construct(Profile $profile, Environment $twig = null)
4545
*
4646
* @param \Throwable|null $exception
4747
*/
48-
public function collect(Request $request, Response $response/*, \Throwable $exception = null*/)
48+
public function collect(Request $request, Response $response/* , \Throwable $exception = null */)
4949
{
5050
}
5151

Tests/Extension/AbstractBootstrap3HorizontalLayoutTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function testLabelOnForm()
2121
$html = $this->renderLabel($view);
2222

2323
$this->assertMatchesXpath($html,
24-
'/label
24+
'/label
2525
[@class="col-sm-2 control-label required"]
2626
[.="[trans]Name[/trans]"]
2727
'
@@ -38,7 +38,7 @@ public function testLabelDoesNotRenderFieldAttributes()
3838
]);
3939

4040
$this->assertMatchesXpath($html,
41-
'/label
41+
'/label
4242
[@for="name"]
4343
[@class="col-sm-2 control-label required"]
4444
'
@@ -55,7 +55,7 @@ public function testLabelWithCustomAttributesPassedDirectly()
5555
]);
5656

5757
$this->assertMatchesXpath($html,
58-
'/label
58+
'/label
5959
[@for="name"]
6060
[@class="my&class col-sm-2 control-label required"]
6161
'
@@ -72,7 +72,7 @@ public function testLabelWithCustomTextAndCustomAttributesPassedDirectly()
7272
]);
7373

7474
$this->assertMatchesXpath($html,
75-
'/label
75+
'/label
7676
[@for="name"]
7777
[@class="my&class col-sm-2 control-label required"]
7878
[.="[trans]Custom label[/trans]"]
@@ -92,7 +92,7 @@ public function testLabelWithCustomTextAsOptionAndCustomAttributesPassedDirectly
9292
]);
9393

9494
$this->assertMatchesXpath($html,
95-
'/label
95+
'/label
9696
[@for="name"]
9797
[@class="my&class col-sm-2 control-label required"]
9898
[.="[trans]Custom label[/trans]"]
@@ -170,7 +170,7 @@ public function testCheckboxRowWithHelp()
170170
$html = $this->renderRow($form->createView(), ['label' => 'foo', 'help' => 'really helpful text']);
171171

172172
$this->assertMatchesXpath($html,
173-
'/div
173+
'/div
174174
[@class="form-group"]
175175
[
176176
./div[@class="col-sm-2" or @class="col-sm-10"]

0 commit comments

Comments
 (0)