-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from rengaw83/feature/compatibility-php8
[TASK] Make compatible to PHP 8 and TYPO3 11
- Loading branch information
Showing
7 changed files
with
42 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
services: | ||
_defaults: | ||
autowire: true | ||
autoconfigure: true | ||
public: false | ||
|
||
GeorgRinger\Gdpr\: | ||
resource: '../Classes/*' | ||
exclude: '../Classes/Domain/Model/*' | ||
|
||
# | ||
# Commands to be executed by typo3, where the key of the array | ||
# is the name of the command (to be called as the first argument after typo3). | ||
# Required parameter is the "class" of the command which needs to be a subclass | ||
# of Symfony/Console/Command. | ||
# | ||
# example: bin/typo3 gdpr:randomize | ||
|
||
GeorgRinger\Gdpr\Command\RandomizeCommand: | ||
tags: | ||
- | ||
name: 'console.command' | ||
command: 'gdpr:randomize' | ||
description: 'Randomize data' | ||
|
||
GeorgRinger\Gdpr\Command\AnonymizeIpCommand: | ||
tags: | ||
- | ||
name: 'console.command' | ||
command: 'gdpr:anonymizeIp' | ||
description: 'Anonymize IP address of given rows' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters