You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix remove() to use null check instead of truthy check, update docblocks
- `if (\$key)` was changed to `if (\$key !== null)` to correctly handle
empty string ('') and '0' keys, which are falsy but valid
- Updated `@param null \$key` docblocks to `@param string|null \$key`
in both Segment and SegmentInterface
Addresses CodeRabbit review comments on PR #99.
0 commit comments