Skip to content

Commit

Permalink
8843
Browse files Browse the repository at this point in the history
 + correct code styling to adhere to project standards
  • Loading branch information
bshain-vtinfo committed Mar 11, 2024
1 parent 56855e0 commit 85030b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PhpSpreadsheet/Cell/Coordinate.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public static function splitRange(string $range): array
$range = self::DEFAULT_RANGE;
}

if (strpos(trim($range), ' ') !== false) {
if (str_contains(trim($range), ' ')) {
$delimiter = ' ';
} else {
$delimiter = ',';
Expand Down

0 comments on commit 85030b6

Please sign in to comment.