From 54e682d9f1453de6a75043726bd0219ceee3722e Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Thu, 11 Jun 2026 11:39:07 +0100 Subject: [PATCH] Replace old links in the code --- src/Parser.php | 2 +- src/Utils.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Parser.php b/src/Parser.php index a47d3cd..a2ee86e 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -5,7 +5,7 @@ /** * JMESPath Pratt parser - * @link http://hall.org.ua/halls/wizzard/pdf/Vaughan.Pratt.TDOP.pdf + * @link https://dl.acm.org/doi/10.1145/512927.512931 */ class Parser { diff --git a/src/Utils.php b/src/Utils.php index b4b17ca..9ed3860 100644 --- a/src/Utils.php +++ b/src/Utils.php @@ -192,7 +192,7 @@ public static function add($a, $b) * @param callable $sortFn Callable used to sort values * * @return array Returns the sorted array - * @link http://en.wikipedia.org/wiki/Schwartzian_transform + * @link https://en.wikipedia.org/wiki/Schwartzian_transform */ public static function stableSort(array $data, callable $sortFn) {