| 1 | <?php |
||
| 9 | class FieldAnonymizerVisitorPass implements CompilerPassInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Service ID of aggregate visitor. |
||
| 13 | * |
||
| 14 | * @see \Netgen\Bundle\InformationCollectionBundle\Core\Persistence\Anonymizer\Visitor\Field\Aggregate |
||
| 15 | * |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | private $aggregateVisitorId = 'netgen_information_collection.anonymizer.visitor.field.aggregate'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Service tag used for field anonymizer visitors. |
||
| 22 | * |
||
| 23 | * @see \Netgen\Bundle\InformationCollectionBundle\API\Persistence\Anonymizer\Visitor\FieldAnonymizerVisitor |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $visitorTag = 'netgen_information_collection.anonymizer.visitor.field'; |
||
| 28 | |||
| 29 | public function process(ContainerBuilder $container) |
||
| 52 | } |
||
| 53 |