Run phpcs code formatter

This commit is contained in:
Kelly Dwan 2024-08-30 17:32:28 -04:00
parent 37b7e4451a
commit f412bc8fba
No known key found for this signature in database
GPG key ID: 8BA5575F3D11575D
4 changed files with 12 additions and 12 deletions

View file

@ -17,7 +17,7 @@ $is_truncated = isset( $attributes['className'] ) && str_contains( $attributes['
$count_more = 0;
if ( $is_truncated ) {
$count_more = count( $contributors ) - TRUNCATED_MAX;
$count_more = count( $contributors ) - TRUNCATED_MAX;
$contributors = array_splice( $contributors, 0, TRUNCATED_MAX );
}