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
Issue Description:
Some DocBlock comments in our repository are not properly aligned, which leads to PHPCS Sniff warnings. Example:
/**
* @param mixed[] $raw_departures Raw departures data from Softrip to update with.
* @param string $softrip_package_code Softrip package code.
* @param int[] $specific_departure_post_ids Specific Departure post IDs to update. Default is empty.
*/
As seen above, the spacing of parameters is inconsistent. PHPCBF does not automatically fix this, and it needs to be manually formatted.
Expected Fix:
Align all @param, @return, and other DocBlock tags correctly.
Ensure proper indentation following our coding standards.
The text was updated successfully, but these errors were encountered:
Issue : PHPCS Sniff: Align DocBlock Comments
Issue Description:
Some DocBlock comments in our repository are not properly aligned, which leads to PHPCS Sniff warnings. Example:
As seen above, the spacing of parameters is inconsistent. PHPCBF does not automatically fix this, and it needs to be manually formatted.
Expected Fix:
Align all @param, @return, and other DocBlock tags correctly.
Ensure proper indentation following our coding standards.
The text was updated successfully, but these errors were encountered: