Skip to content

Commit

Permalink
Prepare release 2.2.0
Browse files Browse the repository at this point in the history
Bump phpcq tools and fix code style.
  • Loading branch information
dmolineus committed Jan 22, 2024
1 parent ce37bf2 commit 9bcbd6f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .phpcq.yaml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,13 @@ tasks:
<<: *phpcs-config
fix: true

composer-normalize:
config: &composer-normalize-config
ignore_output:
- '#> pre-command-run: Contao\\ManagerPlugin\\Composer\\ArtifactsPlugin->preCommandRun#'

composer-normalize-fix:
plugin: composer-normalize
config:
<<: *composer-normalize-config
dry_run: false
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
},
"extra": {
"branch-alias": {
"dev-develop": "2.2.x-dev",
"dev-master": "2.1.x-dev"
"dev-develop": "2.3.x-dev",
"dev-master": "2.2.x-dev"
},
"contao-manager-plugin": "Hofff\\Contao\\FacebookPixel\\ContaoManager\\Plugin"
}
Expand Down
2 changes: 1 addition & 1 deletion src/EventListener/HookSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function onParseFrontendTemplate(string $content): string
{
static $processed = false;

if ($processed || ! isset ($GLOBALS['objPage'])) {
if ($processed || ! isset($GLOBALS['objPage'])) {
return $content;
}

Expand Down

0 comments on commit 9bcbd6f

Please sign in to comment.