(\core_kernel_classes_Class), current class where changes were made * 'property' => (\core_kernel_classes_Property), this is the current property * 'oldProperty' => (\oat\tao\model\dto\OldProperty) this is a DTO object representing the old values * ], * ... * ]; * */ private $properties; public function __construct(array $properties) { $this->properties = $properties; } public function getName(): string { return self::class; } public function getProperties(): array { return $this->properties; } }