entity = $entityName; $this->id = $id; } /** * @return string */ public function getEntity(): string { return $this->entity; } protected function getExpectedResult(): ?array { return null; } /** * Return an array of messages describing the change that this operation will bring * * @return array */ public function getChangeLog(): array { return [ '[DELETE ' . $this->entity . '/' . $this->id . ']' ]; } }