Skip to content

Commit 933b0cd

Browse files
authored
Merge pull request #239 from andreaswolf/fix-code-style
[TASK] Fix code style
2 parents cd0d3db + 9c35da1 commit 933b0cd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/typo3-fractor/rules/TYPO3v12/TypoScript/RemoveNewContentElementWizardOptionsFractor.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ public function refactor(Statement $statement): null|Statement|int
2323
}
2424

2525
if ($statement->object->absoluteName !== 'mod.web_layout.disableNewContentElementWizard'
26-
&& $statement->object->absoluteName !== 'mod.newContentElementWizard.override') {
26+
&& $statement->object->absoluteName !== 'mod.newContentElementWizard.override'
27+
) {
2728
return null;
2829
}
2930

@@ -45,7 +46,6 @@ public function getRuleDefinition(): RuleDefinition
4546
-
4647
CODE_SAMPLE
4748
),
48-
4949
]
5050
);
5151
}

packages/typo3-fractor/rules/TYPO3v12/TypoScript/RemoveWorkspaceModeOptionsFractor.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ public function refactor(Statement $statement): null|Statement|int
2323
}
2424

2525
if ($statement->object->absoluteName !== 'options.workspaces.swapMode'
26-
&& $statement->object->absoluteName !== 'options.workspaces.changeStageMode') {
26+
&& $statement->object->absoluteName !== 'options.workspaces.changeStageMode'
27+
) {
2728
return null;
2829
}
2930

@@ -45,7 +46,6 @@ public function getRuleDefinition(): RuleDefinition
4546
-
4647
CODE_SAMPLE
4748
),
48-
4949
]
5050
);
5151
}

0 commit comments

Comments
 (0)