From a1e583f657f28305e5cbaa4c6b73aa70e1706d62 Mon Sep 17 00:00:00 2001 From: Bob Conan Date: Wed, 13 Nov 2024 15:01:07 -0600 Subject: [PATCH 1/2] Updated SECURITY.md, fix typo(s) (#3870) --- SECURITY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SECURITY.md b/SECURITY.md index e8d4a166f..deec373aa 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -12,7 +12,7 @@ We are focusing our security updates on the following versions ## :pushpin: Note on Security Severity -> NOTE: Please use the following guidlines when selecting a **Severity**. Submitted advisories that are marked **High** or **Critical** that don't meet the guidelines below will be cliosed. +> NOTE: Please use the following guidelines when selecting a **Severity**. Submitted advisories that are marked **High** or **Critical** that don't meet the guidelines below will be closed. * **CRITICAL** - no account required, can modify content, or run malicious code or nefarious activity without any access. * **HIGH** - publisher level account able to run malicious code or nefarious activity, or other high level security things. From 2e975dfa90712e8c84667a4841f2a630ef4b1e48 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Tue, 3 Dec 2024 15:33:32 -0700 Subject: [PATCH 2/2] bug in AbastractLazyCollection Signed-off-by: Andy Miller --- system/src/Grav/Framework/Collection/AbstractLazyCollection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Framework/Collection/AbstractLazyCollection.php b/system/src/Grav/Framework/Collection/AbstractLazyCollection.php index 806939cf5..6d98bc889 100644 --- a/system/src/Grav/Framework/Collection/AbstractLazyCollection.php +++ b/system/src/Grav/Framework/Collection/AbstractLazyCollection.php @@ -26,7 +26,7 @@ abstract class AbstractLazyCollection extends BaseAbstractLazyCollection impleme * @par ArrayCollection * @phpstan-var ArrayCollection */ - protected $collection; + protected ?\Doctrine\Common\Collections\Collection $collection; /** * {@inheritDoc}