From c76e4371ca6e0ee71125af011c845bef7b49bfe7 Mon Sep 17 00:00:00 2001 From: Alessandro Balasco Date: Tue, 8 Sep 2020 09:29:25 +0200 Subject: [PATCH 1/2] Correct english possessive to plural --- docs/04-FunctionalTests.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/04-FunctionalTests.md b/docs/04-FunctionalTests.md index 48f15be28..aaa543dfc 100644 --- a/docs/04-FunctionalTests.md +++ b/docs/04-FunctionalTests.md @@ -52,9 +52,9 @@ One of the common issues with functional tests is the use of PHP functions that As you may already know, the `header` function triggers an error if it is executed after PHP has already output something. In functional tests we run the application multiple times, thus we will get lots of irrelevant errors in the result. -### External URL's +### External URLs -Functional tests cannot access external URL's, just URL's within your project. You can use Guzzle to open external URL's. +Functional tests cannot access external URLs, just URLs within your project. You can use Guzzle to open external URLs. ### Shared Memory From a89a9371d3c9e903a6746009cf86dbfec5ddac1f Mon Sep 17 00:00:00 2001 From: Alessandro Balasco Date: Wed, 9 Sep 2020 16:32:47 +0200 Subject: [PATCH 2/2] Update 04-FunctionalTests.md --- docs/04-FunctionalTests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/04-FunctionalTests.md b/docs/04-FunctionalTests.md index aaa543dfc..d98d85416 100644 --- a/docs/04-FunctionalTests.md +++ b/docs/04-FunctionalTests.md @@ -54,7 +54,7 @@ In functional tests we run the application multiple times, thus we will get lots ### External URLs -Functional tests cannot access external URLs, just URLs within your project. You can use Guzzle to open external URLs. +Functional tests cannot access external URLs, just URLs within your project. You can use PhpBrowser to open external URLs. ### Shared Memory