From 73a789c31573bf50dd123506fa1f80fba5b25477 Mon Sep 17 00:00:00 2001 From: Carl Casbolt Date: Thu, 24 Oct 2024 16:54:06 +0100 Subject: [PATCH] Update writing-tests.md phpunit 11.x links should point to 11.4 now --- writing-tests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/writing-tests.md b/writing-tests.md index ba9af2d..261f3d3 100644 --- a/writing-tests.md +++ b/writing-tests.md @@ -98,7 +98,7 @@ test('sum', function () { }); ``` -You can find the full documentation for PHPUnit's assertion API on the PHPUnit website: [docs.phpunit.de/en/11.3/assertions.html](https://docs.phpunit.de/en/11.3/assertions.html) +You can find the full documentation for PHPUnit's assertion API on the PHPUnit website: [docs.phpunit.de/en/11.4/assertions.html](https://docs.phpunit.de/en/11.4/assertions.html) ---