public function GdprDumpCommands::__construct in General Data Protection Regulation 8.2
Same name and namespace in other branches
- 3.0.x modules/gdpr_dump/src/Commands/GdprDumpCommands.php \Drupal\gdpr_dump\Commands\GdprDumpCommands::__construct()
GdprDumpCommands constructor.
Parameters
\Drupal\gdpr_dump\Service\GdprSqlDump $dump: The dump service.
\Drupal\gdpr_dump\Service\GdprSanitize $sanitize: The sanitize service.
File
- modules/
gdpr_dump/ src/ Commands/ GdprDumpCommands.php, line 41
Class
- GdprDumpCommands
- Class GdprDumpCommands.
Namespace
Drupal\gdpr_dump\CommandsCode
public function __construct(GdprSqlDump $dump, GdprSanitize $sanitize) {
parent::__construct();
$this->dumpService = $dump;
$this->sanitizeService = $sanitize;
}