Tags give the ability to mark specific points in history as being important
-
1.1.3
84335c91 · ·Enforce nullable $type and guard vk_identifier access - Mark the `$type` parameter as `?string` in `getEntity()` (VkEntityIdentifier) and `doRedirect()` (VkEntityIdentifierController) to satisfy nullable type hints. - Add an `isset($entity->vk_identifier)` check in `getIdentifier()` to prevent errors when the `vk_identifier` field is not defined. - Improves module robustness by ensuring safe field access and proper type handling.
-
1.1.2
033c0244 · ·Add nullsafe operator to vk_identifier access to avoid HTTP 500 errors Use the PHP nullsafe operator (`?->`) when accessing `vk_identifier` to handle cases where the field is absent or null. Direct access without this check could trigger an exception and result in an HTTP 500 error. This change improves the robustness of `getIdentifier()` by ensuring we only attempt to read the identifier value when it actually exists.