From 65e15ca4640245e521b608d931470512d8ebe3ad Mon Sep 17 00:00:00 2001 From: BrianTeeman Date: Tue, 8 Jul 2025 11:16:03 +0100 Subject: [PATCH 1/2] [4.x] Typos cacheable integration --- README.md | 2 +- src/AbstractWebApplication.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 83398453..398b59b6 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ class MyApplication extends AbstractApplication ## Logging within Applications -`AbstractApplication` implements the `Psr\Log\LoggerAwareInterface` so is ready for intergrating with an logging package that supports that standard. +`AbstractApplication` implements the `Psr\Log\LoggerAwareInterface` so is ready for integrating with an logging package that supports that standard. The following example shows how you could set up logging in your application using `initialise` method from `AbstractApplication`. diff --git a/src/AbstractWebApplication.php b/src/AbstractWebApplication.php index ad49c000..a4eeedcd 100644 --- a/src/AbstractWebApplication.php +++ b/src/AbstractWebApplication.php @@ -459,9 +459,9 @@ public function redirect($url, $status = 303) } /** - * Set/get cachable state for the response. + * Set/get cacheable state for the response. * - * If $allow is set, sets the cachable state of the response. Always returns the current state. + * If $allow is set, sets the cacheable state of the response. Always returns the current state. * * @param boolean $allow True to allow browser caching. * From 762a0e487228a6da7bde20c948e8e504e38748f8 Mon Sep 17 00:00:00 2001 From: BrianTeeman Date: Tue, 8 Jul 2025 11:17:46 +0100 Subject: [PATCH 2/2] more --- src/WebApplicationInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WebApplicationInterface.php b/src/WebApplicationInterface.php index 837b59b0..26a34a16 100644 --- a/src/WebApplicationInterface.php +++ b/src/WebApplicationInterface.php @@ -45,9 +45,9 @@ public function getInput(): Input; public function redirect($url, $status = 303); /** - * Set/get cachable state for the response. + * Set/get cacheable state for the response. * - * If $allow is set, sets the cachable state of the response. Always returns the current state. + * If $allow is set, sets the cacheable state of the response. Always returns the current state. * * @param boolean $allow True to allow browser caching. *