Skip to content

Commit

Permalink
[TASK] Add return type to BackendController->initializeAction()
Browse files Browse the repository at this point in the history
This is necessary to be compatible with TYPO3 v13.

Related: TYPO3-Documentation/Changelog-To-Doc#810
Releases: main
  • Loading branch information
brotkrueml committed Jan 26, 2024
1 parent 25e13be commit 2fd1267
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,23 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Changed

### Fixed
- Add return type to `ModuleController->initializeAction()`

### Removed


## 12.0.2

### Added

### Changed
- The main branch was renamed from `master` to `main`

### Fixed
- Fix `Services.yaml` for type converter example (#41)

### Removed

## 12.0.1

### Added
- Add TypeConverter Examples (#34)

### Changed
- Changed the vendor to t3docs (#40)

### Fixed

### Removed
2 changes: 1 addition & 1 deletion Classes/Controller/BackendController.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function __construct(
/**
* Function will be called before every other action
*/
protected function initializeAction()
protected function initializeAction(): void
{
$this->pageUid = (int)($this->request->getQueryParams()['id'] ?? 0);
parent::initializeAction();
Expand Down

0 comments on commit 2fd1267

Please sign in to comment.