Skip to content

Commit b41b3db

Browse files
committed
Various minor performance improvements.
1 parent 6661bc9 commit b41b3db

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Aggregator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Aggregator v1.3.6 (last modified: 2026.03.17).
3+
* Aggregator v1.3.6 (last modified: 2026.03.18).
44
* @link https://github.com/CIDRAM/Aggregator
55
*
66
* Description: A stand-alone class implementation of the IPv4+IPv6 IP+CIDR
@@ -258,7 +258,7 @@ private function stripInvalidCharactersAndSort()
258258
if ($AType !== $BType) {
259259
return $AType < $BType ? -1 : 1;
260260
}
261-
$Compare = strcmp($A, $B);
261+
$Compare = \strcmp($A, $B);
262262
if ($Compare === 0) {
263263
if ($ASize === $BSize) {
264264
return 0;

0 commit comments

Comments
 (0)