Skip to content

Commit 41665b7

Browse files
committed
fixed CS
1 parent 8c35d91 commit 41665b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap4HorizontalLayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ protected function renderForm(FormView $view, array $vars = array())
6363

6464
protected function renderLabel(FormView $view, $label = null, array $vars = array())
6565
{
66-
if ($label !== null) {
66+
if (null !== $label) {
6767
$vars += array('label' => $label);
6868
}
6969

src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap4LayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected function renderForm(FormView $view, array $vars = array())
8585

8686
protected function renderLabel(FormView $view, $label = null, array $vars = array())
8787
{
88-
if ($label !== null) {
88+
if (null !== $label) {
8989
$vars += array('label' => $label);
9090
}
9191

0 commit comments

Comments
 (0)