Skip to content

Commit 6154fc8

Browse files
committed
Fix code style
1 parent 310c7b0 commit 6154fc8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Twig/FroalaExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function froalaDisplay(?string $html): string
3030

3131
if ($includeCSS) {
3232
$basePath = $this->parameterBag->get(Configuration::NODE_ROOT . '.basePath');
33-
$url = $this->packages->getUrl(trim($basePath, '/') . '/' . 'css/froala_style.min.css');
33+
$url = $this->packages->getUrl(trim($basePath, '/') . '/css/froala_style.min.css');
3434
$str .= '<link href="' . $url . '" rel="stylesheet" type="text/css" />';
3535
}
3636

tests/Form/Type/FroalaEditorTypeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ private function getParameterBag(): ParameterBag
9191
}
9292

9393
// Define some options for testing
94-
$parameters[Configuration::NODE_ROOT . '.' . 'language'] = 'en';
95-
$parameters[Configuration::NODE_ROOT . '.' . 'profiles'] = ['profile1' => ['language' => 'fr']];
94+
$parameters[Configuration::NODE_ROOT . '.language'] = 'en';
95+
$parameters[Configuration::NODE_ROOT . '.profiles'] = ['profile1' => ['language' => 'fr']];
9696

9797
return new ParameterBag($parameters);
9898
}

0 commit comments

Comments
 (0)