Skip to content

Commit

Permalink
Fixed coding standards.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed May 7, 2024
1 parent 5a28aa2 commit 4b7135f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion web/themes/contrib/civictheme/src/CivicthemeColorManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ public function __construct(
protected CivicthemeConfigManager $configManager,
protected CivicthemeStylesheetParser $stylesheetParser,
protected CivicthemeStylesheetGenerator $stylesheetGenerator,
protected CacheTagsInvalidatorInterface $cacheTagsInvalidator) {
protected CacheTagsInvalidatorInterface $cacheTagsInvalidator,
) {
$this->pluginLoader->load(__DIR__ . '/Color');
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ final class CivicthemeSettingsFormManager implements ContainerInjectionInterface
*/
public function __construct(
protected CivicthemePluginLoader $pluginLoader,
protected ThemeExtensionList $themeExtensionList
protected ThemeExtensionList $themeExtensionList,
) {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ final class CivicthemeVersionManager implements ContainerInjectionInterface {
* {@inheritdoc}
*/
public function __construct(
protected ThemeExtensionList $themeExtensionList
protected ThemeExtensionList $themeExtensionList,
) {
}

Expand Down
3 changes: 2 additions & 1 deletion web/themes/contrib/civictheme/src/Color/CivicthemeColor.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ class CivicthemeColor implements \Stringable {
public function __construct(
protected $name,
$value,
$formula = NULL) {
$formula = NULL,
) {
if ($formula) {
$this->setFormula($formula);
}
Expand Down

0 comments on commit 4b7135f

Please sign in to comment.