From 7bfa5d04675b18af330486cad763b25feabc1dd4 Mon Sep 17 00:00:00 2001 From: Marc Ermshaus Date: Tue, 18 Nov 2025 09:18:50 +0100 Subject: [PATCH 1/3] Fix section numbering (3.2 existed two times) --- accepted/PSR-13-links.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accepted/PSR-13-links.md b/accepted/PSR-13-links.md index af088b2f9..a799fb1fb 100644 --- a/accepted/PSR-13-links.md +++ b/accepted/PSR-13-links.md @@ -269,7 +269,7 @@ interface EvolvableLinkInterface extends LinkInterface } ``` -#### 3.2 `Psr\Link\LinkProviderInterface` +#### 3.3 `Psr\Link\LinkProviderInterface` ```php Date: Tue, 18 Nov 2025 09:29:41 +0100 Subject: [PATCH 2/3] Fix heading level --- accepted/PSR-13-links.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accepted/PSR-13-links.md b/accepted/PSR-13-links.md index a799fb1fb..53d1c31c9 100644 --- a/accepted/PSR-13-links.md +++ b/accepted/PSR-13-links.md @@ -269,7 +269,7 @@ interface EvolvableLinkInterface extends LinkInterface } ``` -#### 3.3 `Psr\Link\LinkProviderInterface` +### 3.3 `Psr\Link\LinkProviderInterface` ```php Date: Tue, 18 Nov 2025 09:35:43 +0100 Subject: [PATCH 3/3] Fix heading levels in section 1 --- accepted/PSR-13-links.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/accepted/PSR-13-links.md b/accepted/PSR-13-links.md index 53d1c31c9..ad1aef9d4 100644 --- a/accepted/PSR-13-links.md +++ b/accepted/PSR-13-links.md @@ -89,7 +89,7 @@ A relationship that is not defined in one of the above registries or a similar public registry is considered "private", that is, specific to a particular application or use case. Such relationships MUST use an absolute URI. -## 1.4 Link Templates +### 1.4 Link Templates [RFC 6570](https://tools.ietf.org/html/rfc6570) defines a format for URI templates, that is, a pattern for a URI that is expected to be filled in with values provided by a client @@ -97,7 +97,7 @@ tool. Some hypermedia formats support templated links while others do not, and m have a special way to denote that a link is a template. A Serializer for a format that does not support URI Templates MUST ignore any templated Links it encounters. -## 1.5 Evolvable providers +### 1.5 Evolvable providers In some cases, a Link Provider may need the ability to have additional links added to it. In others, a link provider is necessarily read-only, with links @@ -110,7 +110,7 @@ incompatible. Therefore, the `EvolvableLinkProviderInterface`'s single method requires that a new object be returned, identical to the original but with an additional Link object included. -## 1.6 Evolvable link objects +### 1.6 Evolvable link objects Link objects are in most cases value objects. As such, allowing them to evolve in the same fashion as PSR-7 value objects is a useful option. For that reason,