Bug: LinkedIn organization_id missing null-coalesce operator #110
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Audit Finding
Severity: High
Issue:
In
LinkedinService::publish(),$credentials['organization_id']is accessed without??null-coalesce. PHP 8.1+ emitsE_WARNINGfor undefined array key.Fix: Use
$credentials['organization_id'] ?? ''with!empty()check.Files:
LinkedinService.phpBranch created:
feature/110-bug-linkedin-organization-id-missing-nul